Interface CfnInferenceExperiment.RealTimeInferenceConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInferenceExperiment.RealTimeInferenceConfigProperty.Jsii$Proxy
- Enclosing class:
CfnInferenceExperiment
@Stability(Stable)
public static interface CfnInferenceExperiment.RealTimeInferenceConfigProperty
extends software.amazon.jsii.JsiiSerializable
The infrastructure configuration for deploying the model to a real-time inference endpoint.
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.*; RealTimeInferenceConfigProperty realTimeInferenceConfigProperty = RealTimeInferenceConfigProperty.builder() .instanceCount(123) .instanceType("instanceType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInferenceExperiment.RealTimeInferenceConfigProperty
static final class
An implementation forCfnInferenceExperiment.RealTimeInferenceConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The number of instances of the type specified byInstanceType
.The instance type the model is deployed to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceCount
The number of instances of the type specified byInstanceType
.- See Also:
-
getInstanceType
The instance type the model is deployed to.- See Also:
-
builder
-