SiteReference
- class aws_cdk.interfaces.aws_networkmanager.SiteReference(*, global_network_id, site_arn, site_id)
Bases:
objectA reference to a Site resource.
- Parameters:
global_network_id (
str) – The GlobalNetworkId of the Site resource.site_arn (
str) – The ARN of the Site resource.site_id (
str) – The SiteId of the Site 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_networkmanager as interfaces_networkmanager site_reference = interfaces_networkmanager.SiteReference( global_network_id="globalNetworkId", site_arn="siteArn", site_id="siteId" )
Attributes
- global_network_id
The GlobalNetworkId of the Site resource.
- site_arn
The ARN of the Site resource.
- site_id
The SiteId of the Site resource.