Interface AwsEcsServicePlacementConstraintsDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AwsEcsServicePlacementConstraintsDetails.Builder,AwsEcsServicePlacementConstraintsDetails>,SdkBuilder<AwsEcsServicePlacementConstraintsDetails.Builder,AwsEcsServicePlacementConstraintsDetails>,SdkPojo
- Enclosing class:
- AwsEcsServicePlacementConstraintsDetails
public static interface AwsEcsServicePlacementConstraintsDetails.Builder extends SdkPojo, CopyableBuilder<AwsEcsServicePlacementConstraintsDetails.Builder,AwsEcsServicePlacementConstraintsDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AwsEcsServicePlacementConstraintsDetails.Builderexpression(String expression)A cluster query language expression to apply to the constraint.AwsEcsServicePlacementConstraintsDetails.Buildertype(String type)The type of constraint.-
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
-
expression
AwsEcsServicePlacementConstraintsDetails.Builder expression(String expression)
A cluster query language expression to apply to the constraint. You cannot specify an expression if the constraint type is
distinctInstance.- Parameters:
expression- A cluster query language expression to apply to the constraint. You cannot specify an expression if the constraint type isdistinctInstance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
AwsEcsServicePlacementConstraintsDetails.Builder type(String type)
The type of constraint. Use
distinctInstanceto run each task in a particular group on a different container instance. UsememberOfto restrict the selection to a group of valid candidates.Valid values:
distinctInstance|memberOf- Parameters:
type- The type of constraint. UsedistinctInstanceto run each task in a particular group on a different container instance. UsememberOfto restrict the selection to a group of valid candidates.Valid values:
distinctInstance|memberOf- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-