Class CfnSchedulePropsMixin.DeadLetterConfigProperty
An object that contains information about an Amazon SQS queue that EventBridge Scheduler uses as a dead-letter queue for your schedule.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Scheduler
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnSchedulePropsMixin.DeadLetterConfigProperty : CfnSchedulePropsMixin.IDeadLetterConfigProperty
Syntax (vb)
Public Class CfnSchedulePropsMixin.DeadLetterConfigProperty Implements CfnSchedulePropsMixin.IDeadLetterConfigProperty
Remarks
If specified, EventBridge Scheduler delivers failed events that could not be successfully delivered to a target to the queue.
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.CfnPropertyMixins.AWS.Scheduler;
var deadLetterConfigProperty = new DeadLetterConfigProperty {
Arn = "arn"
};
Synopsis
Constructors
| DeadLetterConfigProperty() | An object that contains information about an Amazon SQS queue that EventBridge Scheduler uses as a dead-letter queue for your schedule. |
Properties
| Arn | The Amazon Resource Name (ARN) of the SQS queue specified as the destination for the dead-letter queue. |
Constructors
DeadLetterConfigProperty()
An object that contains information about an Amazon SQS queue that EventBridge Scheduler uses as a dead-letter queue for your schedule.
public DeadLetterConfigProperty()
Remarks
If specified, EventBridge Scheduler delivers failed events that could not be successfully delivered to a target to the queue.
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.CfnPropertyMixins.AWS.Scheduler;
var deadLetterConfigProperty = new DeadLetterConfigProperty {
Arn = "arn"
};
Properties
Arn
The Amazon Resource Name (ARN) of the SQS queue specified as the destination for the dead-letter queue.
public object? Arn { get; set; }