aws-cdk-lib.aws_ecs.CfnCluster.ClusterConfigurationProperty

interface ClusterConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.ECS.CfnCluster.ClusterConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnCluster_ClusterConfigurationProperty
Javasoftware.amazon.awscdk.services.ecs.CfnCluster.ClusterConfigurationProperty
Pythonaws_cdk.aws_ecs.CfnCluster.ClusterConfigurationProperty
TypeScript aws-cdk-lib » aws_ecs » CfnCluster » ClusterConfigurationProperty

The execute command 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',
  },
};

Properties

NameTypeDescription
executeCommandConfiguration?IResolvable | ExecuteCommandConfigurationPropertyThe details of the execute command configuration.

executeCommandConfiguration?

Type: IResolvable | ExecuteCommandConfigurationProperty (optional)

The details of the execute command configuration.