CfnAccessLogSubscriptionProps
- class aws_cdk.aws_vpclattice.CfnAccessLogSubscriptionProps(*, destination_arn, resource_identifier=None, service_network_log_type=None, tags=None)
Bases:
objectProperties for defining a
CfnAccessLogSubscription.- Parameters:
destination_arn (
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:
- 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_vpclattice as vpclattice cfn_access_log_subscription_props = vpclattice.CfnAccessLogSubscriptionProps( destination_arn="destinationArn", # the properties below are optional 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.
- resource_identifier
The ID or ARN of the service network or service.
- service_network_log_type
Log type of the service network.
- tags
The tags for the access log subscription.