interface CfnLocalGatewayVirtualInterfaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnLocalGatewayVirtualInterfaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnLocalGatewayVirtualInterfaceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnLocalGatewayVirtualInterfaceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnLocalGatewayVirtualInterfaceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnLocalGatewayVirtualInterfaceMixinProps: ec2.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