Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AwsEcsServicePlacementConstraintsDetails

import type { AwsEcsServicePlacementConstraintsDetails } from "https://aws-api.deno.dev/v0.4/services/securityhub.ts?docs=full";

A placement constraint for the tasks in the service.

interface AwsEcsServicePlacementConstraintsDetails {
Expression?: string | null;
Type?: string | null;
}

§Properties

§
Expression?: string | null
[src]

A cluster query language expression to apply to the constraint. You cannot specify an expression if the constraint type is distinctInstance.

§
Type?: string | null
[src]

The type of constraint. Use distinctInstance to run each task in a particular group on a different container instance. Use memberOf to restrict the selection to a group of valid candidates.

Valid values: distinctInstance | memberOf