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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ecs/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.

Task placement constraints aren't supported for tasks run on Fargate.

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.

Returns:

  • (String)


10728
10729
10730
10731
10732
10733
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 10728

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)


10728
10729
10730
10731
10732
10733
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 10728

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