Class DlqDestinationConfig
A destination configuration.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Lambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DlqDestinationConfig : IDlqDestinationConfig
Syntax (vb)
Public Class DlqDestinationConfig Implements IDlqDestinationConfig
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.AWS.Lambda;
var dlqDestinationConfig = new DlqDestinationConfig {
Destination = "destination"
};
Synopsis
Constructors
DlqDestinationConfig() | A destination configuration. |
Properties
Destination | The Amazon Resource Name (ARN) of the destination resource. |
Constructors
DlqDestinationConfig()
A destination configuration.
public DlqDestinationConfig()
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.AWS.Lambda;
var dlqDestinationConfig = new DlqDestinationConfig {
Destination = "destination"
};
Properties
Destination
The Amazon Resource Name (ARN) of the destination resource.
public string Destination { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated