Show / Hide Table of Contents

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.

Inheritance
object
CfnSchedulePropsMixin.DeadLetterConfigProperty
Implements
CfnSchedulePropsMixin.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.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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-scheduler-schedule-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.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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-scheduler-schedule-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.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; }
Property Value

object

Remarks

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

Type union: either string or IQueueRef

Implements

CfnSchedulePropsMixin.IDeadLetterConfigProperty
Back to top Generated by DocFX