interface ModelInfrastructureConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnInferenceExperimentPropsMixin_ModelInfrastructureConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnInferenceExperimentPropsMixin.ModelInfrastructureConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const modelInfrastructureConfigProperty: sagemaker.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