interface CfnClusterProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ECS.CfnClusterProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnClusterProps |
Java | software.amazon.awscdk.services.ecs.CfnClusterProps |
Python | aws_cdk.aws_ecs.CfnClusterProps |
TypeScript | aws-cdk-lib » aws_ecs » CfnClusterProps |
Properties for defining a CfnCluster
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const cfnClusterProps: ecs.CfnClusterProps = {
capacityProviders: ['capacityProviders'],
clusterName: 'clusterName',
clusterSettings: [{
name: 'name',
value: 'value',
}],
configuration: {
executeCommandConfiguration: {
kmsKeyId: 'kmsKeyId',
logConfiguration: {
cloudWatchEncryptionEnabled: false,
cloudWatchLogGroupName: 'cloudWatchLogGroupName',
s3BucketName: 's3BucketName',
s3EncryptionEnabled: false,
s3KeyPrefix: 's3KeyPrefix',
},
logging: 'logging',
},
managedStorageConfiguration: {
fargateEphemeralStorageKmsKeyId: 'fargateEphemeralStorageKmsKeyId',
kmsKeyId: 'kmsKeyId',
},
},
defaultCapacityProviderStrategy: [{
base: 123,
capacityProvider: 'capacityProvider',
weight: 123,
}],
serviceConnectDefaults: {
namespace: 'namespace',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
capacity | string[] | The short name of one or more capacity providers to associate with the cluster. |
cluster | string | A user-generated string that you use to identify your cluster. |
cluster | IResolvable | IResolvable | Cluster [] | The settings to use when creating a cluster. |
configuration? | IResolvable | Cluster | The execute command and managed storage configuration for the cluster. |
default | IResolvable | IResolvable | Capacity [] | The default capacity provider strategy for the cluster. |
service | IResolvable | Service | Use this parameter to set a default Service Connect namespace. |
tags? | Cfn [] | The metadata that you apply to the cluster to help you categorize and organize them. |
capacityProviders?
Type:
string[]
(optional)
The short name of one or more capacity providers to associate with the cluster.
A capacity provider must be associated with a cluster before it can be included as part of the default capacity provider strategy of the cluster or used in a capacity provider strategy when calling the CreateService or RunTask actions.
If specifying a capacity provider that uses an Auto Scaling group, the capacity provider must be created but not associated with another cluster. New Auto Scaling group capacity providers can be created with the CreateCapacityProvider API operation.
To use a AWS Fargate capacity provider, specify either the FARGATE
or FARGATE_SPOT
capacity providers. The AWS Fargate capacity providers are available to all accounts and only need to be associated with a cluster to be used.
The PutCapacityProvider API operation is used to update the list of available capacity providers for a cluster after the cluster is created.
clusterName?
Type:
string
(optional)
A user-generated string that you use to identify your cluster.
If you don't specify a name, AWS CloudFormation generates a unique physical ID for the name.
clusterSettings?
Type:
IResolvable
|
IResolvable
|
Cluster
[]
(optional)
The settings to use when creating a cluster.
This parameter is used to turn on CloudWatch Container Insights for a cluster.
configuration?
Type:
IResolvable
|
Cluster
(optional)
The execute command and managed storage configuration for the cluster.
defaultCapacityProviderStrategy?
Type:
IResolvable
|
IResolvable
|
Capacity
[]
(optional)
The default capacity provider strategy for the cluster.
When services or tasks are run in the cluster with no launch type or capacity provider strategy specified, the default capacity provider strategy is used.
serviceConnectDefaults?
Type:
IResolvable
|
Service
(optional)
Use this parameter to set a default Service Connect namespace.
After you set a default Service Connect namespace, any new services with Service Connect turned on that are created in the cluster are added as client services in the namespace. This setting only applies to new services that set the enabled
parameter to true
in the ServiceConnectConfiguration
. You can set the namespace of each service individually in the ServiceConnectConfiguration
to override this default parameter.
Tasks that run in a namespace can use short names to connect to services in the namespace. Tasks can connect to services across all of the clusters in the namespace. Tasks connect through a managed proxy container that collects logs and metrics for increased visibility. Only the tasks that Amazon ECS services create are supported with Service Connect. For more information, see Service Connect in the Amazon Elastic Container Service Developer Guide .
tags?
Type:
Cfn
[]
(optional)
The metadata that you apply to the cluster to help you categorize and organize them.
Each tag consists of a key and an optional value. You define both.
The following basic restrictions apply to tags:
- Maximum number of tags per resource - 50
- For each resource, each tag key must be unique, and each tag key can have only one value.
- Maximum key length - 128 Unicode characters in UTF-8
- Maximum value length - 256 Unicode characters in UTF-8
- If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : /