Class CfnFunctionPropsMixin.DeadLetterConfigProperty
The dead-letter queue for failed asynchronous invocations.
Implements
Inherited Members
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
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
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; }