Interface ResourceConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ResourceConfig.Builder,ResourceConfig>,SdkBuilder<ResourceConfig.Builder,ResourceConfig>,SdkPojo
- Enclosing class:
- ResourceConfig
public static interface ResourceConfig.Builder extends SdkPojo, CopyableBuilder<ResourceConfig.Builder,ResourceConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceConfig.BuilderinstanceCount(Integer instanceCount)The number of resources that are used to train the model.ResourceConfig.BuilderinstanceType(String instanceType)The instance type that is used to train the model.ResourceConfig.BuilderinstanceType(InstanceType instanceType)The instance type that is used to train the model.ResourceConfig.BuildervolumeSizeInGB(Integer volumeSizeInGB)The maximum size of the instance that is used to train the model.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
instanceCount
ResourceConfig.Builder instanceCount(Integer instanceCount)
The number of resources that are used to train the model.
- Parameters:
instanceCount- The number of resources that are used to train the model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
instanceType
ResourceConfig.Builder instanceType(String instanceType)
The instance type that is used to train the model.
- Parameters:
instanceType- The instance type that is used to train the model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InstanceType,InstanceType
-
instanceType
ResourceConfig.Builder instanceType(InstanceType instanceType)
The instance type that is used to train the model.
- Parameters:
instanceType- The instance type that is used to train the model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InstanceType,InstanceType
-
volumeSizeInGB
ResourceConfig.Builder volumeSizeInGB(Integer volumeSizeInGB)
The maximum size of the instance that is used to train the model.
- Parameters:
volumeSizeInGB- The maximum size of the instance that is used to train the model.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-