DeliveryDestinationReference
- class aws_cdk.aws_logs.DeliveryDestinationReference(*, delivery_destination_arn, delivery_destination_name)
- Bases: - object- A reference to a DeliveryDestination resource. - Parameters:
- delivery_destination_arn ( - str) – The ARN of the DeliveryDestination resource.
- delivery_destination_name ( - str) – The Name of the DeliveryDestination 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 delivery_destination_reference = logs.DeliveryDestinationReference( delivery_destination_arn="deliveryDestinationArn", delivery_destination_name="deliveryDestinationName" ) - Attributes - delivery_destination_arn
- The ARN of the DeliveryDestination resource. 
 - delivery_destination_name
- The Name of the DeliveryDestination resource.