aws-cdk-lib.aws_sagemaker.CfnInferenceExperiment.ModelInfrastructureConfigProperty

interface ModelInfrastructureConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnInferenceExperiment.ModelInfrastructureConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnInferenceExperiment_ModelInfrastructureConfigProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnInferenceExperiment.ModelInfrastructureConfigProperty
Pythonaws_cdk.aws_sagemaker.CfnInferenceExperiment.ModelInfrastructureConfigProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnInferenceExperiment » 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-lib';
const modelInfrastructureConfigProperty: sagemaker.CfnInferenceExperiment.ModelInfrastructureConfigProperty = {
  infrastructureType: 'infrastructureType',
  realTimeInferenceConfig: {
    instanceCount: 123,
    instanceType: 'instanceType',
  },
};

Properties

NameTypeDescription
infrastructureTypestringThe inference option to which to deploy your model. Possible values are the following:.
realTimeInferenceConfigIResolvable | RealTimeInferenceConfigPropertyThe infrastructure configuration for deploying the model to real-time inference.

infrastructureType

Type: string

The inference option to which to deploy your model. Possible values are the following:.

  • RealTime : Deploy to real-time inference.

realTimeInferenceConfig

Type: IResolvable | RealTimeInferenceConfigProperty

The infrastructure configuration for deploying the model to real-time inference.