interface ClusterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnCluster.ClusterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnCluster_ClusterConfigurationProperty |
Java | software.amazon.awscdk.services.ecs.CfnCluster.ClusterConfigurationProperty |
Python | aws_cdk.aws_ecs.CfnCluster.ClusterConfigurationProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnCluster » ClusterConfigurationProperty |
The execute command and managed storage configuration for the cluster.
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 clusterConfigurationProperty: ecs.CfnCluster.ClusterConfigurationProperty = {
executeCommandConfiguration: {
kmsKeyId: 'kmsKeyId',
logConfiguration: {
cloudWatchEncryptionEnabled: false,
cloudWatchLogGroupName: 'cloudWatchLogGroupName',
s3BucketName: 's3BucketName',
s3EncryptionEnabled: false,
s3KeyPrefix: 's3KeyPrefix',
},
logging: 'logging',
},
managedStorageConfiguration: {
fargateEphemeralStorageKmsKeyId: 'fargateEphemeralStorageKmsKeyId',
kmsKeyId: 'kmsKeyId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| execute | IResolvable | Execute | The details of the execute command configuration. |
| managed | IResolvable | Managed | The details of the managed storage configuration. |
executeCommandConfiguration?
Type:
IResolvable | Execute
(optional)
The details of the execute command configuration.
managedStorageConfiguration?
Type:
IResolvable | Managed
(optional)
The details of the managed storage configuration.

.NET
Go
Java
Python
TypeScript