Show / Hide Table of Contents

Class CfnFunctionPropsMixin.DeadLetterConfigProperty

The dead-letter queue for failed asynchronous invocations.

Inheritance
object
CfnFunctionPropsMixin.DeadLetterConfigProperty
Implements
CfnFunctionPropsMixin.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.Lambda
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnFunctionPropsMixin.DeadLetterConfigProperty : CfnFunctionPropsMixin.IDeadLetterConfigProperty
Syntax (vb)
Public Class CfnFunctionPropsMixin.DeadLetterConfigProperty Implements CfnFunctionPropsMixin.IDeadLetterConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-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.Lambda;

             var deadLetterConfigProperty = new DeadLetterConfigProperty {
                 TargetArn = "targetArn"
             };

Synopsis

Constructors

DeadLetterConfigProperty()

The dead-letter queue for failed asynchronous invocations.

Properties

TargetArn

The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.

Constructors

DeadLetterConfigProperty()

The dead-letter queue for failed asynchronous invocations.

public DeadLetterConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-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.Lambda;

             var deadLetterConfigProperty = new DeadLetterConfigProperty {
                 TargetArn = "targetArn"
             };

Properties

TargetArn

The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.

public object? TargetArn { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-deadletterconfig.html#cfn-lambda-function-deadletterconfig-targetarn

Type union: either string or ITopicRef or IQueueRef

Implements

CfnFunctionPropsMixin.IDeadLetterConfigProperty
Back to top Generated by DocFX