Class: Aws::ECS::Types::TaskDefinitionPlacementConstraint

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#expressionString

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

Returns:

  • (String)


11228
11229
11230
11231
11232
11233
# File 'lib/aws-sdk-ecs/types.rb', line 11228

class TaskDefinitionPlacementConstraint < Struct.new(
  :type,
  :expression)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of constraint. The ‘MemberOf` constraint restricts selection to be from a group of valid candidates.

Returns:

  • (String)


11228
11229
11230
11231
11232
11233
# File 'lib/aws-sdk-ecs/types.rb', line 11228

class TaskDefinitionPlacementConstraint < Struct.new(
  :type,
  :expression)
  SENSITIVE = []
  include Aws::Structure
end