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)


12276
12277
12278
12279
12280
12281
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 12276

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)


12276
12277
12278
12279
12280
12281
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 12276

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