interface ClusterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnClusterPropsMixin.ClusterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnClusterPropsMixin_ClusterConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnClusterPropsMixin.ClusterConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnClusterPropsMixin.ClusterConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » 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 { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const clusterConfigurationProperty: ecs_mixins.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