DestinationConfig

class aws_cdk.aws_lambda.DestinationConfig(*, 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_

destination_config = lambda.DestinationConfig(
    destination="destination"
)

Attributes

destination

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