Interface S3LogDestinationProps

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

@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)", date="2025-12-12T17:54:27.486Z") @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();