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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannel.DeadLetterQueueS3Propertystatic final classAn implementation forCfnChannel.DeadLetterQueueS3Property -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketArn
The ARN of the S3 bucket.- See Also:
-
getErrorOutputPrefix
The error output prefix.- See Also:
-
getExpectedBucketOwner
Optional 12-digit AWS account ID expected to own the dead-letter S3 bucket.- See Also:
-
builder
-