Arguments bag for creating infrastructure for a new Cluster.

interface ClusterArgs {
    cluster?: any;
    name?: any;
    securityGroups?: any[];
    settings?: any;
    tags?: any;
    vpc?: classic.ec2.Vpc;
}

Properties

cluster?: any

An existing aws.ecs.Cluster (or the name of an existing aws.ecs.Cluster) to use for this awsx.ecs.Cluster. If not provided, a default one will be created.

Note: If passing a string, use the name of an existing ECS Cluster instead of its id.

name?: any

The name of the cluster (up to 255 letters, numbers, hyphens, and underscores)

securityGroups?: any[]

The security group to place new instances into. If not provided, a default will be created. Pass an empty array to create no security groups.

settings?: any

Configuration block(s) with cluster settings. For example, this can be used to enable CloudWatch Container Insights for a cluster.

tags?: any

Key-value mapping of resource tags

The network in which to create this cluster. If not provided, Vpc.getDefault() will be used.

Generated using TypeDoc