interface PlacementConstraintProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnServicePropsMixin.PlacementConstraintProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnServicePropsMixin_PlacementConstraintProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnServicePropsMixin.PlacementConstraintProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnServicePropsMixin.PlacementConstraintProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnServicePropsMixin » PlacementConstraintProperty |
An object representing a constraint on task placement.
For more information, see Task placement constraints in the Amazon Elastic Container Service Developer Guide .
If you're using the Fargate launch type, task placement constraints aren't supported.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const placementConstraintProperty: ecs_mixins.CfnServicePropsMixin.PlacementConstraintProperty = {
expression: 'expression',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| expression? | string | A cluster query language expression to apply to the constraint. |
| type? | string | The type of constraint. |
expression?
Type:
string
(optional)
A cluster query language expression to apply to the constraint.
The expression can have a maximum length of 2000 characters. You can't specify an expression if the constraint type is distinctInstance . For more information, see Cluster query language in the Amazon Elastic Container Service Developer Guide .
type?
Type:
string
(optional)
The type of constraint.
Use distinctInstance to ensure that each task in a particular group is running on a different container instance. Use memberOf to restrict the selection to a group of valid candidates.

.NET
Go
Java
Python
TypeScript