AccessSourceReference

class aws_cdk.interfaces.aws_route53globalresolver.AccessSourceReference(*, access_source_arn, access_source_id)

Bases: object

A reference to a AccessSource resource.

Parameters:
  • access_source_arn (str) – The ARN of the AccessSource resource.

  • access_source_id (str) – The AccessSourceId of the AccessSource 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.interfaces import aws_route53globalresolver as interfaces_route53globalresolver

access_source_reference = interfaces_route53globalresolver.AccessSourceReference(
    access_source_arn="accessSourceArn",
    access_source_id="accessSourceId"
)

Attributes

access_source_arn

The ARN of the AccessSource resource.

access_source_id

The AccessSourceId of the AccessSource resource.