CustomerGatewayAssociationReference
- class aws_cdk.interfaces.aws_networkmanager.CustomerGatewayAssociationReference(*, customer_gateway_arn, global_network_id)
Bases:
objectA reference to a CustomerGatewayAssociation resource.
- Parameters:
customer_gateway_arn (
str) – The CustomerGatewayArn of the CustomerGatewayAssociation resource.global_network_id (
str) – The GlobalNetworkId of the CustomerGatewayAssociation 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 customer_gateway_association_reference = interfaces_networkmanager.CustomerGatewayAssociationReference( customer_gateway_arn="customerGatewayArn", global_network_id="globalNetworkId" )
Attributes
- customer_gateway_arn
The CustomerGatewayArn of the CustomerGatewayAssociation resource.
- global_network_id
The GlobalNetworkId of the CustomerGatewayAssociation resource.