CfnDeliveryProps

class aws_cdk.aws_logs.CfnDeliveryProps(*, delivery_destination_arn, delivery_source_name, tags=None)

Bases: object

Properties for defining a CfnDelivery.

Parameters:
  • delivery_destination_arn (str) – The ARN of the delivery destination that is associated with this delivery.

  • delivery_source_name (str) – The name of the delivery source that is associated with this delivery.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags that have been assigned to this delivery.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-delivery.html

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

cfn_delivery_props = logs.CfnDeliveryProps(
    delivery_destination_arn="deliveryDestinationArn",
    delivery_source_name="deliverySourceName",

    # the properties below are optional
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

delivery_destination_arn

The ARN of the delivery destination that is associated with this delivery.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-delivery.html#cfn-logs-delivery-deliverydestinationarn

delivery_source_name

The name of the delivery source that is associated with this delivery.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-delivery.html#cfn-logs-delivery-deliverysourcename

tags

The tags that have been assigned to this delivery.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-delivery.html#cfn-logs-delivery-tags