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