Interface AwsEcsServicePlacementStrategiesDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AwsEcsServicePlacementStrategiesDetails.Builder,AwsEcsServicePlacementStrategiesDetails>,SdkBuilder<AwsEcsServicePlacementStrategiesDetails.Builder,AwsEcsServicePlacementStrategiesDetails>,SdkPojo
- Enclosing class:
- AwsEcsServicePlacementStrategiesDetails
public static interface AwsEcsServicePlacementStrategiesDetails.Builder extends SdkPojo, CopyableBuilder<AwsEcsServicePlacementStrategiesDetails.Builder,AwsEcsServicePlacementStrategiesDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AwsEcsServicePlacementStrategiesDetails.Builderfield(String field)The field to apply the placement strategy against.AwsEcsServicePlacementStrategiesDetails.Buildertype(String type)The type of placement strategy.-
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
-
field
AwsEcsServicePlacementStrategiesDetails.Builder field(String field)
The field to apply the placement strategy against.
For the
spreadplacement strategy, valid values areinstanceId(orhost, which has the same effect), or any platform or custom attribute that is applied to a container instance, such asattribute:ecs.availability-zone.For the
binpackplacement strategy, valid values arecpuandmemory.For the
randomplacement strategy, this attribute is not used.- Parameters:
field- The field to apply the placement strategy against.For the
spreadplacement strategy, valid values areinstanceId(orhost, which has the same effect), or any platform or custom attribute that is applied to a container instance, such asattribute:ecs.availability-zone.For the
binpackplacement strategy, valid values arecpuandmemory.For the
randomplacement strategy, this attribute is not used.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
AwsEcsServicePlacementStrategiesDetails.Builder type(String type)
The type of placement strategy.
The
randomplacement strategy randomly places tasks on available candidates.The
spreadplacement strategy spreads placement across available candidates evenly based on the value ofField.The
binpackstrategy places tasks on available candidates that have the least available amount of the resource that is specified inField.Valid values:
random|spread|binpack- Parameters:
type- The type of placement strategy.The
randomplacement strategy randomly places tasks on available candidates.The
spreadplacement strategy spreads placement across available candidates evenly based on the value ofField.The
binpackstrategy places tasks on available candidates that have the least available amount of the resource that is specified inField.Valid values:
random|spread|binpack- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-