CfnAccessLogSubscriptionMixinProps
- class aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnAccessLogSubscriptionMixinProps(*, destination_arn=None, resource_identifier=None, service_network_log_type=None, tags=None)
Bases:
objectProperties 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:
- 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.
- 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.