interface CfnCustomerGatewayAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnCustomerGatewayAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnCustomerGatewayAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnCustomerGatewayAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnCustomerGatewayAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnCustomerGatewayAssociationMixinProps |
Properties for CfnCustomerGatewayAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as networkmanager_mixins } from '@aws-cdk/mixins-preview/aws-networkmanager';
const cfnCustomerGatewayAssociationMixinProps: networkmanager_mixins.CfnCustomerGatewayAssociationMixinProps = {
customerGatewayArn: 'customerGatewayArn',
deviceId: 'deviceId',
globalNetworkId: 'globalNetworkId',
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
(optional)
The Amazon Resource Name (ARN) of the customer gateway.
deviceId?
Type:
string
(optional)
The ID of the device.
globalNetworkId?
Type:
string
(optional)
The ID of the global network.
linkId?
Type:
string
(optional)
The ID of the link.

.NET
Go
Java
Python
TypeScript