interface DeadLetterQueueS3Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnChannelPropsMixin.DeadLetterQueueS3Property |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnChannelPropsMixin_DeadLetterQueueS3Property |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnChannelPropsMixin.DeadLetterQueueS3Property |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnChannelPropsMixin.DeadLetterQueueS3Property |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnChannelPropsMixin » 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/cfn-property-mixins';
const deadLetterQueueS3Property: msk.CfnChannelPropsMixin.DeadLetterQueueS3Property = {
bucketArn: 'bucketArn',
errorOutputPrefix: 'errorOutputPrefix',
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
(optional)
The ARN of the S3 bucket.
errorOutputPrefix?
Type:
string
(optional)
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