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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnInferenceComponent.InferenceComponentRuntimeConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCopyCount
The number of runtime copies of the model container to deploy with the inference component.Each copy can serve inference requests.
- See Also:
-
getCurrentCopyCount
The number of copies for the inference component.- See Also:
-
getDesiredCopyCount
The number of copies for the inference component.- See Also:
-
builder
@Stability(Stable) static CfnInferenceComponent.InferenceComponentRuntimeConfigProperty.Builder builder()
-