DeliverySourceReference
- class aws_cdk.aws_logs.DeliverySourceReference(*, delivery_source_arn, delivery_source_name)
Bases:
object
A reference to a DeliverySource resource.
- Parameters:
delivery_source_arn (
str
) – The ARN of the DeliverySource resource.delivery_source_name (
str
) – The Name of the DeliverySource 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_source_reference = logs.DeliverySourceReference( delivery_source_arn="deliverySourceArn", delivery_source_name="deliverySourceName" )
Attributes
- delivery_source_arn
The ARN of the DeliverySource resource.
- delivery_source_name
The Name of the DeliverySource resource.