interface RealTimeInferenceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnInferenceExperimentPropsMixin.RealTimeInferenceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnInferenceExperimentPropsMixin_RealTimeInferenceConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnInferenceExperimentPropsMixin.RealTimeInferenceConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnInferenceExperimentPropsMixin.RealTimeInferenceConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnInferenceExperimentPropsMixin » RealTimeInferenceConfigProperty |
The infrastructure configuration for deploying the model to a real-time inference endpoint.
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 realTimeInferenceConfigProperty: sagemaker_mixins.CfnInferenceExperimentPropsMixin.RealTimeInferenceConfigProperty = {
instanceCount: 123,
instanceType: 'instanceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | number | The number of instances of the type specified by InstanceType . |
| instance | string | The instance type the model is deployed to. |
instanceCount?
Type:
number
(optional)
The number of instances of the type specified by InstanceType .
instanceType?
Type:
string
(optional)
The instance type the model is deployed to.

.NET
Go
Java
Python
TypeScript