interface CfnLocalGatewayVirtualInterfaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnLocalGatewayVirtualInterfaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnLocalGatewayVirtualInterfaceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnLocalGatewayVirtualInterfaceMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnLocalGatewayVirtualInterfaceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnLocalGatewayVirtualInterfaceMixinProps |
Properties for CfnLocalGatewayVirtualInterfacePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnLocalGatewayVirtualInterfaceMixinProps: ec2_mixins.CfnLocalGatewayVirtualInterfaceMixinProps = {
localAddress: 'localAddress',
localGatewayVirtualInterfaceGroupId: 'localGatewayVirtualInterfaceGroupId',
outpostLagId: 'outpostLagId',
peerAddress: 'peerAddress',
peerBgpAsn: 123,
peerBgpAsnExtended: 123,
tags: [{
key: 'key',
value: 'value',
}],
vlan: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| local | string | The local address. |
| local | string | The ID of the local gateway virtual interface group. |
| outpost | string | The Outpost LAG ID. |
| peer | string | The peer address. |
| peer | number | The peer BGP ASN. |
| peer | number | The extended 32-bit ASN of the BGP peer for use with larger ASN values. |
| tags? | Cfn[] | The tags assigned to the virtual interface. |
| vlan? | number | The ID of the VLAN. |
localAddress?
Type:
string
(optional)
The local address.
localGatewayVirtualInterfaceGroupId?
Type:
string
(optional)
The ID of the local gateway virtual interface group.
outpostLagId?
Type:
string
(optional)
The Outpost LAG ID.
peerAddress?
Type:
string
(optional)
The peer address.
peerBgpAsn?
Type:
number
(optional)
The peer BGP ASN.
peerBgpAsnExtended?
Type:
number
(optional)
The extended 32-bit ASN of the BGP peer for use with larger ASN values.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the virtual interface.
vlan?
Type:
number
(optional)
The ID of the VLAN.

.NET
Go
Java
Python
TypeScript