Interface S3LogDestinationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
S3LogDestinationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-12-17T21:37:41.773Z") @Stability(Experimental) public interface S3LogDestinationProps extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for S3LogDestination.

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.alpha.*;
 import software.amazon.awscdk.services.s3.*;
 Bucket bucket;
 S3LogDestinationProps s3LogDestinationProps = S3LogDestinationProps.builder()
         .bucket(bucket)
         // the properties below are optional
         .bucketOwner("bucketOwner")
         .outputFormat(S3OutputFormat.PLAIN)
         .prefix("prefix")
         .build();