Interface CfnCluster.LoggingPropertiesProperty

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

@Stability(Stable) public static interface CfnCluster.LoggingPropertiesProperty extends software.amazon.jsii.JsiiSerializable
Specifies logging information, such as queries and connection attempts, for the specified Amazon Redshift cluster.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.redshift.*;
 LoggingPropertiesProperty loggingPropertiesProperty = LoggingPropertiesProperty.builder()
         .bucketName("bucketName")
         .logDestinationType("logDestinationType")
         .logExports(List.of("logExports"))
         .s3KeyPrefix("s3KeyPrefix")
         .build();
 

See Also: