interface InferenceComponentDeploymentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnInferenceComponentPropsMixin.InferenceComponentDeploymentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnInferenceComponentPropsMixin_InferenceComponentDeploymentConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnInferenceComponentPropsMixin.InferenceComponentDeploymentConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnInferenceComponentPropsMixin.InferenceComponentDeploymentConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnInferenceComponentPropsMixin » InferenceComponentDeploymentConfigProperty |
The deployment configuration for an endpoint that hosts inference components.
The configuration includes the desired deployment strategy and rollback settings.
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 inferenceComponentDeploymentConfigProperty: sagemaker.CfnInferenceComponentPropsMixin.InferenceComponentDeploymentConfigProperty = {
autoRollbackConfiguration: {
alarms: [{
alarmName: 'alarmName',
}],
},
rollingUpdatePolicy: {
maximumBatchSize: {
type: 'type',
value: 123,
},
maximumExecutionTimeoutInSeconds: 123,
rollbackMaximumBatchSize: {
type: 'type',
value: 123,
},
waitIntervalInSeconds: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | IResolvable | Auto | |
| rolling | IResolvable | Inference | Specifies a rolling deployment strategy for updating a SageMaker AI endpoint. |
autoRollbackConfiguration?
Type:
IResolvable | Auto
(optional)
rollingUpdatePolicy?
Type:
IResolvable | Inference
(optional)
Specifies a rolling deployment strategy for updating a SageMaker AI endpoint.

.NET
Go
Java
Python
TypeScript