Class CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty
The configuration for the infrastructure that the model will be deployed to.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SageMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty : CfnInferenceExperimentPropsMixin.IModelInfrastructureConfigProperty
Syntax (vb)
Public Class CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty Implements CfnInferenceExperimentPropsMixin.IModelInfrastructureConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.SageMaker;
var modelInfrastructureConfigProperty = new ModelInfrastructureConfigProperty {
InfrastructureType = "infrastructureType",
RealTimeInferenceConfig = new RealTimeInferenceConfigProperty {
InstanceCount = 123,
InstanceType = "instanceType"
}
};
Synopsis
Constructors
| ModelInfrastructureConfigProperty() | The configuration for the infrastructure that the model will be deployed to. |
Properties
| InfrastructureType | The inference option to which to deploy your model. Possible values are the following:. |
| RealTimeInferenceConfig | The infrastructure configuration for deploying the model to real-time inference. |
Constructors
ModelInfrastructureConfigProperty()
The configuration for the infrastructure that the model will be deployed to.
public ModelInfrastructureConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.SageMaker;
var modelInfrastructureConfigProperty = new ModelInfrastructureConfigProperty {
InfrastructureType = "infrastructureType",
RealTimeInferenceConfig = new RealTimeInferenceConfigProperty {
InstanceCount = 123,
InstanceType = "instanceType"
}
};
Properties
InfrastructureType
The inference option to which to deploy your model. Possible values are the following:.
public string? InfrastructureType { get; set; }
Property Value
Remarks
RealTimeInferenceConfig
The infrastructure configuration for deploying the model to real-time inference.
public object? RealTimeInferenceConfig { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnInferenceExperimentPropsMixin.IRealTimeInferenceConfigProperty