Interface CfnClusterPropsMixin.ExecuteCommandLogConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnClusterPropsMixin.ExecuteCommandLogConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnClusterPropsMixin

@Stability(Stable) public static interface CfnClusterPropsMixin.ExecuteCommandLogConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The log configuration for the results of the execute command actions.

The logs can be sent to CloudWatch Logs or an Amazon S3 bucket.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ecs.*;
 ExecuteCommandLogConfigurationProperty executeCommandLogConfigurationProperty = ExecuteCommandLogConfigurationProperty.builder()
         .cloudWatchEncryptionEnabled(false)
         .cloudWatchLogGroupName("cloudWatchLogGroupName")
         .s3BucketName("s3BucketName")
         .s3EncryptionEnabled(false)
         .s3KeyPrefix("s3KeyPrefix")
         .build();
 

See Also: