Interface CfnPipe.S3LogDestinationProperty

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

@Stability(Stable) public static interface CfnPipe.S3LogDestinationProperty extends software.amazon.jsii.JsiiSerializable
Represents the Amazon S3 logging configuration settings for the pipe.

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.pipes.*;
 S3LogDestinationProperty s3LogDestinationProperty = S3LogDestinationProperty.builder()
         .bucketName("bucketName")
         .bucketOwner("bucketOwner")
         .outputFormat("outputFormat")
         .prefix("prefix")
         .build();
 

See Also: