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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.CapacitySizeConfigProperty
static final class
An implementation forCfnCluster.CapacitySizeConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
Specifies whether SageMaker should process the update by amount or percentage of instances.- See Also:
-
getValue
Specifies the amount or percentage of instances SageMaker updates at a time.- See Also:
-
builder
-