CustomerGatewayAssociationReference
- class aws_cdk.aws_networkmanager.CustomerGatewayAssociationReference(*, customer_gateway_arn, global_network_id)
Bases:
object
A 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 import aws_networkmanager as networkmanager customer_gateway_association_reference = 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.