Interface CfnWorkGroupPropsMixin.S3LoggingConfigurationProperty

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

@Stability(Stable) public static interface CfnWorkGroupPropsMixin.S3LoggingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration settings for delivering logs to Amazon S3 buckets.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.athena.mixins.*;
 S3LoggingConfigurationProperty s3LoggingConfigurationProperty = S3LoggingConfigurationProperty.builder()
         .enabled(false)
         .kmsKey("kmsKey")
         .logLocation("logLocation")
         .build();
 

See Also: