interface ModelInfrastructureConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnInferenceExperimentPropsMixin_ModelInfrastructureConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnInferenceExperimentPropsMixin » ModelInfrastructureConfigProperty |
The configuration for the infrastructure that the model will be deployed to.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const modelInfrastructureConfigProperty: sagemaker_mixins.CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty = {
infrastructureType: 'infrastructureType',
realTimeInferenceConfig: {
instanceCount: 123,
instanceType: 'instanceType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| infrastructure | string | The inference option to which to deploy your model. Possible values are the following:. |
| real | IResolvable | Real | The infrastructure configuration for deploying the model to real-time inference. |
infrastructureType?
Type:
string
(optional)
The inference option to which to deploy your model. Possible values are the following:.
RealTime: Deploy to real-time inference.
realTimeInferenceConfig?
Type:
IResolvable | Real
(optional)
The infrastructure configuration for deploying the model to real-time inference.

.NET
Go
Java
Python
TypeScript