Interface CfnInferenceComponent.InferenceComponentRuntimeConfigProperty

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

@Stability(Stable) public static interface CfnInferenceComponent.InferenceComponentRuntimeConfigProperty extends software.amazon.jsii.JsiiSerializable
Runtime settings for a model that is deployed with an inference component.

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.*;
 InferenceComponentRuntimeConfigProperty inferenceComponentRuntimeConfigProperty = InferenceComponentRuntimeConfigProperty.builder()
         .copyCount(123)
         .currentCopyCount(123)
         .desiredCopyCount(123)
         .build();
 

See Also: