Interface RealTimeInferenceConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<RealTimeInferenceConfig.Builder,RealTimeInferenceConfig>
,SdkBuilder<RealTimeInferenceConfig.Builder,RealTimeInferenceConfig>
,SdkPojo
- Enclosing class:
- RealTimeInferenceConfig
public static interface RealTimeInferenceConfig.Builder extends SdkPojo, CopyableBuilder<RealTimeInferenceConfig.Builder,RealTimeInferenceConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RealTimeInferenceConfig.Builder
instanceCount(Integer instanceCount)
The number of instances of the type specified byInstanceType
.RealTimeInferenceConfig.Builder
instanceType(String instanceType)
The instance type the model is deployed to.RealTimeInferenceConfig.Builder
instanceType(InstanceType instanceType)
The instance type the model is deployed to.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
instanceType
RealTimeInferenceConfig.Builder instanceType(String instanceType)
The instance type the model is deployed to.
- Parameters:
instanceType
- The instance type the model is deployed to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InstanceType
,InstanceType
-
instanceType
RealTimeInferenceConfig.Builder instanceType(InstanceType instanceType)
The instance type the model is deployed to.
- Parameters:
instanceType
- The instance type the model is deployed to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InstanceType
,InstanceType
-
instanceCount
RealTimeInferenceConfig.Builder instanceCount(Integer instanceCount)
The number of instances of the type specified by
InstanceType
.- Parameters:
instanceCount
- The number of instances of the type specified byInstanceType
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-