Interface CfnTaskDefinition.TaskDefinitionPlacementConstraintProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTaskDefinition.TaskDefinitionPlacementConstraintProperty.Jsii$Proxy
Enclosing class:
CfnTaskDefinition

@Stability(Stable) public static interface CfnTaskDefinition.TaskDefinitionPlacementConstraintProperty extends software.amazon.jsii.JsiiSerializable
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 AWS Fargate .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ecs.*;
 TaskDefinitionPlacementConstraintProperty taskDefinitionPlacementConstraintProperty = TaskDefinitionPlacementConstraintProperty.builder()
         .type("type")
         // the properties below are optional
         .expression("expression")
         .build();
 

See Also: