CfnAccessLogSubscriptionMixinProps

class aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnAccessLogSubscriptionMixinProps(*, destination_arn=None, resource_identifier=None, service_network_log_type=None, tags=None)

Bases: object

Properties for CfnAccessLogSubscriptionPropsMixin.

Parameters:
  • destination_arn (Optional[str]) – The Amazon Resource Name (ARN) of the destination. The supported destination types are CloudWatch Log groups, Kinesis Data Firehose delivery streams, and Amazon S3 buckets.

  • resource_identifier (Optional[str]) – The ID or ARN of the service network or service.

  • service_network_log_type (Optional[str]) – Log type of the service network.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags for the access log subscription.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-accesslogsubscription.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.mixins_preview.aws_vpclattice import mixins as vpclattice_mixins

cfn_access_log_subscription_mixin_props = vpclattice_mixins.CfnAccessLogSubscriptionMixinProps(
    destination_arn="destinationArn",
    resource_identifier="resourceIdentifier",
    service_network_log_type="serviceNetworkLogType",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

destination_arn

The Amazon Resource Name (ARN) of the destination.

The supported destination types are CloudWatch Log groups, Kinesis Data Firehose delivery streams, and Amazon S3 buckets.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-accesslogsubscription.html#cfn-vpclattice-accesslogsubscription-destinationarn

resource_identifier

The ID or ARN of the service network or service.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-accesslogsubscription.html#cfn-vpclattice-accesslogsubscription-resourceidentifier

service_network_log_type

Log type of the service network.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-accesslogsubscription.html#cfn-vpclattice-accesslogsubscription-servicenetworklogtype

tags

The tags for the access log subscription.

See:

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