interface CfnCustomerGatewayAssociationProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.NetworkManager.CfnCustomerGatewayAssociationProps | 
  Java | software.amazon.awscdk.services.networkmanager.CfnCustomerGatewayAssociationProps | 
  Python | aws_cdk.aws_networkmanager.CfnCustomerGatewayAssociationProps | 
  TypeScript  | @aws-cdk/aws-networkmanager » CfnCustomerGatewayAssociationProps | 
Properties for defining a CfnCustomerGatewayAssociation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as networkmanager from '@aws-cdk/aws-networkmanager';
const cfnCustomerGatewayAssociationProps: networkmanager.CfnCustomerGatewayAssociationProps = {
  customerGatewayArn: 'customerGatewayArn',
  deviceId: 'deviceId',
  globalNetworkId: 'globalNetworkId',
  // the properties below are optional
  linkId: 'linkId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| customer | string | The Amazon Resource Name (ARN) of the customer gateway. | 
| device | string | The ID of the device. | 
| global | string | The ID of the global network. | 
| link | string | The ID of the link. | 
customerGatewayArn
Type:
string
The Amazon Resource Name (ARN) of the customer gateway.
deviceId
Type:
string
The ID of the device.
globalNetworkId
Type:
string
The ID of the global network.
linkId?
Type:
string
(optional)
The ID of the link.

 .NET
 Java
 Python
 TypeScript