Interface CfnChannel.S3DestinationConfigurationProperty

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

@Stability(Stable) public static interface CfnChannel.S3DestinationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
S3 destination configuration.

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.msk.*;
 S3DestinationConfigurationProperty s3DestinationConfigurationProperty = S3DestinationConfigurationProperty.builder()
         .deadLetterQueueS3(DeadLetterQueueS3Property.builder()
                 .bucketArn("bucketArn")
                 .errorOutputPrefix("errorOutputPrefix")
                 // the properties below are optional
                 .expectedBucketOwner("expectedBucketOwner")
                 .build())
         .serviceExecutionRoleArn("serviceExecutionRoleArn")
         .storage(S3StorageProperty.builder()
                 .bucketArn("bucketArn")
                 .compressionType("compressionType")
                 .storageClass("storageClass")
                 // the properties below are optional
                 .expectedBucketOwner("expectedBucketOwner")
                 .outputKeyTemplate("outputKeyTemplate")
                 .outputPrefix("outputPrefix")
                 .build())
         // the properties below are optional
         .dataFreshnessInSeconds(123)
         .build();
 

See Also: