/** *
An object representing a constraint on task placement in the task definition.
If you are using the Fargate launch type, task placement constraints are not supported.
For more information, see Task Placement Constraints in the Amazon Elastic Container Service Developer Guide.
*/ export interface _TaskDefinitionPlacementConstraint { /** *The type of constraint. The DistinctInstance constraint ensures that each task in a particular group is running on a different container instance. The MemberOf constraint restricts selection to be from a group of valid candidates.
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.
*/ expression?: string; } export declare type _UnmarshalledTaskDefinitionPlacementConstraint = _TaskDefinitionPlacementConstraint;