interface InferenceComponentDeploymentConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnInferenceComponentPropsMixin.InferenceComponentDeploymentConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnInferenceComponentPropsMixin_InferenceComponentDeploymentConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnInferenceComponentPropsMixin.InferenceComponentDeploymentConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnInferenceComponentPropsMixin.InferenceComponentDeploymentConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const inferenceComponentDeploymentConfigProperty: sagemaker_mixins.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