interface CustomerGatewayAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.NetworkManager.CustomerGatewayAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsnetworkmanager#CustomerGatewayAssociationReference |
Java | software.amazon.awscdk.interfaces.networkmanager.CustomerGatewayAssociationReference |
Python | aws_cdk.interfaces.aws_networkmanager.CustomerGatewayAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_networkmanager » CustomerGatewayAssociationReference |
A reference to a CustomerGatewayAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_networkmanager as interfaces_networkmanager } from 'aws-cdk-lib/interfaces';
const customerGatewayAssociationReference: interfaces_networkmanager.CustomerGatewayAssociationReference = {
customerGatewayArn: 'customerGatewayArn',
globalNetworkId: 'globalNetworkId',
};
Properties
| Name | Type | Description |
|---|---|---|
| customer | string | The CustomerGatewayArn of the CustomerGatewayAssociation resource. |
| global | string | The GlobalNetworkId of the CustomerGatewayAssociation resource. |
customerGatewayArn
Type:
string
The CustomerGatewayArn of the CustomerGatewayAssociation resource.
globalNetworkId
Type:
string
The GlobalNetworkId of the CustomerGatewayAssociation resource.

.NET
Go
Java
Python
TypeScript