Interface InstanceGroup.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InstanceGroup.Builder,InstanceGroup>,SdkBuilder<InstanceGroup.Builder,InstanceGroup>,SdkPojo
- Enclosing class:
- InstanceGroup
public static interface InstanceGroup.Builder extends SdkPojo, CopyableBuilder<InstanceGroup.Builder,InstanceGroup>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InstanceGroup.BuilderinstanceCount(Integer instanceCount)Specifies the number of instances of the instance group.InstanceGroup.BuilderinstanceGroupName(String instanceGroupName)Specifies the name of the instance group.InstanceGroup.BuilderinstanceType(String instanceType)Specifies the instance type of the instance group.InstanceGroup.BuilderinstanceType(TrainingInstanceType instanceType)Specifies the instance type of the instance group.-
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
-
instanceType
InstanceGroup.Builder instanceType(String instanceType)
Specifies the instance type of the instance group.
- Parameters:
instanceType- Specifies the instance type of the instance group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TrainingInstanceType,TrainingInstanceType
-
instanceType
InstanceGroup.Builder instanceType(TrainingInstanceType instanceType)
Specifies the instance type of the instance group.
- Parameters:
instanceType- Specifies the instance type of the instance group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TrainingInstanceType,TrainingInstanceType
-
instanceCount
InstanceGroup.Builder instanceCount(Integer instanceCount)
Specifies the number of instances of the instance group.
- Parameters:
instanceCount- Specifies the number of instances of the instance group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
instanceGroupName
InstanceGroup.Builder instanceGroupName(String instanceGroupName)
Specifies the name of the instance group.
- Parameters:
instanceGroupName- Specifies the name of the instance group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-