interface CfnPrivateVirtualInterfaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DirectConnect.Mixins.CfnPrivateVirtualInterfaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdirectconnect/mixins#CfnPrivateVirtualInterfaceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.directconnect.mixins.CfnPrivateVirtualInterfaceMixinProps |
Python | aws_cdk.mixins_preview.aws_directconnect.mixins.CfnPrivateVirtualInterfaceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_directconnect » mixins » CfnPrivateVirtualInterfaceMixinProps |
Properties for CfnPrivateVirtualInterfacePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as directconnect_mixins } from '@aws-cdk/mixins-preview/aws-directconnect';
const cfnPrivateVirtualInterfaceMixinProps: directconnect_mixins.CfnPrivateVirtualInterfaceMixinProps = {
allocatePrivateVirtualInterfaceRoleArn: 'allocatePrivateVirtualInterfaceRoleArn',
bgpPeers: [{
addressFamily: 'addressFamily',
amazonAddress: 'amazonAddress',
asn: 'asn',
authKey: 'authKey',
bgpPeerId: 'bgpPeerId',
customerAddress: 'customerAddress',
}],
connectionId: 'connectionId',
directConnectGatewayId: 'directConnectGatewayId',
enableSiteLink: false,
mtu: 123,
tags: [{
key: 'key',
value: 'value',
}],
virtualGatewayId: 'virtualGatewayId',
virtualInterfaceName: 'virtualInterfaceName',
vlan: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| allocate | string | The Amazon Resource Name (ARN) of the role to allocate the private virtual interface. |
| bgp | IResolvable | (IResolvable | Bgp)[] | The BGP peers configured on this virtual interface. |
| connection | string | |
| direct | string | |
| enable | boolean | IResolvable | Indicates whether to enable or disable SiteLink. |
| mtu? | number | The maximum transmission unit (MTU), in bytes. |
| tags? | Cfn[] | The tags associated with the private virtual interface. |
| virtual | string | The ID or ARN of the virtual private gateway. |
| virtual | string | The name of the virtual interface assigned by the customer network. |
| vlan? | number | The ID of the VLAN. |
allocatePrivateVirtualInterfaceRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the role to allocate the private virtual interface.
Needs directconnect:AllocatePrivateVirtualInterface permissions and tag permissions if applicable.
bgpPeers?
Type:
IResolvable | (IResolvable | Bgp)[]
(optional)
The BGP peers configured on this virtual interface.
connectionId?
Type:
string
(optional)
directConnectGatewayId?
Type:
string
(optional)
enableSiteLink?
Type:
boolean | IResolvable
(optional)
Indicates whether to enable or disable SiteLink.
mtu?
Type:
number
(optional)
The maximum transmission unit (MTU), in bytes.
The supported values are 1500 and 9001. The default value is 1500.
tags?
Type:
Cfn[]
(optional)
The tags associated with the private virtual interface.
virtualGatewayId?
Type:
string
(optional)
The ID or ARN of the virtual private gateway.
virtualInterfaceName?
Type:
string
(optional)
The name of the virtual interface assigned by the customer network.
The name has a maximum of 100 characters. The following are valid characters: a-z, 0-9 and a hyphen (-).
vlan?
Type:
number
(optional)
The ID of the VLAN.

.NET
Go
Java
Python
TypeScript