interface ClusterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ECS.CfnClusterPropsMixin.ClusterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsecs#CfnClusterPropsMixin_ClusterConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ecs.CfnClusterPropsMixin.ClusterConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ecs.CfnClusterPropsMixin.ClusterConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ecs » CfnClusterPropsMixin » 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/cfn-property-mixins';
const clusterConfigurationProperty: ecs.CfnClusterPropsMixin.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