Interface CfnChannel.DeadLetterQueueS3Property

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

@Stability(Stable) public static interface CfnChannel.DeadLetterQueueS3Property extends software.amazon.jsii.JsiiSerializable
Dead letter queue S3 configuration of the destination.

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.*;
 DeadLetterQueueS3Property deadLetterQueueS3Property = DeadLetterQueueS3Property.builder()
         .bucketArn("bucketArn")
         .errorOutputPrefix("errorOutputPrefix")
         // the properties below are optional
         .expectedBucketOwner("expectedBucketOwner")
         .build();
 

See Also: