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)


11224
11225
11226
11227
11228
11229
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 11224

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)


11224
11225
11226
11227
11228
11229
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 11224

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