Class: Aws::ECS::Types::TaskDefinitionPlacementConstraint
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::TaskDefinitionPlacementConstraint
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecs/types.rb
Overview
The constraint on task placement in the task definition. For more information, see [Task placement constraints] in the *Amazon Elastic Container Service Developer Guide*.
<note markdown=“1”> Task placement constraints aren’t supported for tasks run on Fargate.
</note>
[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#expression ⇒ String
A cluster query language expression to apply to the constraint.
-
#type ⇒ String
The type of constraint.
Instance Attribute Details
#expression ⇒ String
A cluster query language expression to apply to the constraint. For more information, see [Cluster query language] in the *Amazon Elastic Container Service Developer Guide*.
[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html
12129 12130 12131 12132 12133 12134 |
# File 'lib/aws-sdk-ecs/types.rb', line 12129 class TaskDefinitionPlacementConstraint < Struct.new( :type, :expression) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of constraint. The ‘MemberOf` constraint restricts selection to be from a group of valid candidates.
12129 12130 12131 12132 12133 12134 |
# File 'lib/aws-sdk-ecs/types.rb', line 12129 class TaskDefinitionPlacementConstraint < Struct.new( :type, :expression) SENSITIVE = [] include Aws::Structure end |