interface CapacitySizeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnClusterPropsMixin.CapacitySizeConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnClusterPropsMixin_CapacitySizeConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnClusterPropsMixin.CapacitySizeConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnClusterPropsMixin.CapacitySizeConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnClusterPropsMixin » CapacitySizeConfigProperty |
The configuration of the size measurements of the AMI update.
Using this configuration, you can specify whether SageMaker should update your instance group by an amount or percentage of instances.
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 capacitySizeConfigProperty: sagemaker_mixins.CfnClusterPropsMixin.CapacitySizeConfigProperty = {
type: 'type',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | Specifies whether SageMaker should process the update by amount or percentage of instances. |
| value? | number | Specifies the amount or percentage of instances SageMaker updates at a time. |
type?
Type:
string
(optional)
Specifies whether SageMaker should process the update by amount or percentage of instances.
value?
Type:
number
(optional)
Specifies the amount or percentage of instances SageMaker updates at a time.

.NET
Go
Java
Python
TypeScript