DestinationReference
- class aws_cdk.aws_logs.DestinationReference(*, destination_arn, destination_name)
Bases:
object
A reference to a Destination resource.
- Parameters:
destination_arn (
str
) – The ARN of the Destination resource.destination_name (
str
) – The DestinationName 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_logs as logs destination_reference = logs.DestinationReference( destination_arn="destinationArn", destination_name="destinationName" )
Attributes
- destination_arn
The ARN of the Destination resource.
- destination_name
The DestinationName of the Destination resource.