Show / Hide Table of Contents

Class CfnEventBus.DeadLetterConfigProperty

Configuration details of the Amazon SQS queue for EventBridge to use as a dead-letter queue (DLQ).

Inheritance
object
CfnEventBus.DeadLetterConfigProperty
Implements
CfnEventBus.IDeadLetterConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEventBus.DeadLetterConfigProperty : CfnEventBus.IDeadLetterConfigProperty
Syntax (vb)
Public Class CfnEventBus.DeadLetterConfigProperty Implements CfnEventBus.IDeadLetterConfigProperty
Remarks

For more information, see Using dead-letter queues to process undelivered events in the EventBridge User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbus-deadletterconfig.html

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.Events;

             var deadLetterConfigProperty = new DeadLetterConfigProperty {
                 Arn = "arn"
             };

Synopsis

Constructors

DeadLetterConfigProperty()

Configuration details of the Amazon SQS queue for EventBridge to use as a dead-letter queue (DLQ).

Properties

Arn

The ARN of the SQS queue specified as the target for the dead-letter queue.

Constructors

DeadLetterConfigProperty()

Configuration details of the Amazon SQS queue for EventBridge to use as a dead-letter queue (DLQ).

public DeadLetterConfigProperty()
Remarks

For more information, see Using dead-letter queues to process undelivered events in the EventBridge User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbus-deadletterconfig.html

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.Events;

             var deadLetterConfigProperty = new DeadLetterConfigProperty {
                 Arn = "arn"
             };

Properties

Arn

The ARN of the SQS queue specified as the target for the dead-letter queue.

public string? Arn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-eventbus-deadletterconfig.html#cfn-events-eventbus-deadletterconfig-arn

Implements

CfnEventBus.IDeadLetterConfigProperty
Back to top Generated by DocFX