Interface CfnInferenceComponent.InferenceComponentSchedulingConfigProperty

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

@Stability(Stable) public static interface CfnInferenceComponent.InferenceComponentSchedulingConfigProperty extends software.amazon.jsii.JsiiSerializable
The scheduling configuration that determines how inference component copies are placed across available 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.*;
 InferenceComponentSchedulingConfigProperty inferenceComponentSchedulingConfigProperty = InferenceComponentSchedulingConfigProperty.builder()
         .availabilityZoneBalance(InferenceComponentAvailabilityZoneBalanceProperty.builder()
                 .enforcementMode("enforcementMode")
                 // the properties below are optional
                 .maxImbalance(123)
                 .build())
         .placementStrategy("placementStrategy")
         .build();
 

See Also: