Interface CfnChannel.IDeadLetterQueueS3Property
Dead letter queue S3 configuration of the destination.
Namespace: Amazon.CDK.AWS.MSK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnChannel.IDeadLetterQueueS3Property
Syntax (vb)
Public Interface CfnChannel.IDeadLetterQueueS3Property
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MSK;
var deadLetterQueueS3Property = new DeadLetterQueueS3Property {
BucketArn = "bucketArn",
ErrorOutputPrefix = "errorOutputPrefix",
// the properties below are optional
ExpectedBucketOwner = "expectedBucketOwner"
};
Synopsis
Properties
| BucketArn | The ARN of the S3 bucket. |
| ErrorOutputPrefix | The error output prefix. |
| ExpectedBucketOwner | Optional 12-digit AWS account ID expected to own the dead-letter S3 bucket. |
Properties
BucketArn
The ARN of the S3 bucket.
string BucketArn { get; }
Property Value
Remarks
ErrorOutputPrefix
The error output prefix.
string ErrorOutputPrefix { get; }
Property Value
Remarks
ExpectedBucketOwner
Optional 12-digit AWS account ID expected to own the dead-letter S3 bucket.
string? ExpectedBucketOwner { get; }