Interface CfnCluster.CapacitySizeConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCluster.CapacitySizeConfigProperty.Jsii$Proxy
Enclosing class:
CfnCluster

@Stability(Stable) public static interface CfnCluster.CapacitySizeConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 CapacitySizeConfigProperty capacitySizeConfigProperty = CapacitySizeConfigProperty.builder()
         .type("type")
         .value(123)
         .build();
 

See Also: