DlqDestinationConfig

class aws_cdk.aws_lambda.DlqDestinationConfig(*, destination)

Bases: object

A destination configuration.

Parameters:

destination (str) – The Amazon Resource Name (ARN) of the destination resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_lambda as lambda_

dlq_destination_config = lambda.DlqDestinationConfig(
    destination="destination"
)

Attributes

destination

The Amazon Resource Name (ARN) of the destination resource.