Show / Hide Table of Contents

Class DlqDestinationConfig

A destination configuration.

Inheritance
object
DlqDestinationConfig
Implements
IDlqDestinationConfig
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IDlqDestinationConfig
Back to top Generated by DocFX