interface CapacitySizeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnEndpointPropsMixin.CapacitySizeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnEndpointPropsMixin_CapacitySizeProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnEndpointPropsMixin.CapacitySizeProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnEndpointPropsMixin.CapacitySizeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnEndpointPropsMixin » CapacitySizeProperty |
Specifies the type and size of the endpoint capacity to activate for a blue/green deployment, a rolling deployment, or a rollback strategy.
You can specify your batches as either instance count or the overall percentage or your fleet.
For a rollback strategy, if you don't specify the fields in this object, or if you set the Value to 100%, then SageMaker uses a blue/green rollback strategy and rolls all traffic back to the blue fleet.
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 capacitySizeProperty: sagemaker_mixins.CfnEndpointPropsMixin.CapacitySizeProperty = {
type: 'type',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | Specifies the endpoint capacity type. |
| value? | number | Defines the capacity size, either as a number of instances or a capacity percentage. |
type?
Type:
string
(optional)
Specifies the endpoint capacity type.
INSTANCE_COUNT: The endpoint activates based on the number of instances.CAPACITY_PERCENT: The endpoint activates based on the specified percentage of capacity.
value?
Type:
number
(optional)
Defines the capacity size, either as a number of instances or a capacity percentage.

.NET
Go
Java
Python
TypeScript