interface DeadLetterQueueS3Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnChannel.DeadLetterQueueS3Property |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnChannel_DeadLetterQueueS3Property |
Java | software.amazon.awscdk.services.msk.CfnChannel.DeadLetterQueueS3Property |
Python | aws_cdk.aws_msk.CfnChannel.DeadLetterQueueS3Property |
TypeScript | aws-cdk-lib » aws_msk » CfnChannel » DeadLetterQueueS3Property |
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 { aws_msk as msk } from 'aws-cdk-lib';
const deadLetterQueueS3Property: msk.CfnChannel.DeadLetterQueueS3Property = {
bucketArn: 'bucketArn',
errorOutputPrefix: 'errorOutputPrefix',
// the properties below are optional
expectedBucketOwner: 'expectedBucketOwner',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The ARN of the S3 bucket. |
| error | string | The error output prefix. |
| expected | string | Optional 12-digit AWS account ID expected to own the dead-letter S3 bucket. |
bucketArn
Type:
string
The ARN of the S3 bucket.
errorOutputPrefix
Type:
string
The error output prefix.
expectedBucketOwner?
Type:
string
(optional)
Optional 12-digit AWS account ID expected to own the dead-letter S3 bucket.

.NET
Go
Java
Python
TypeScript