interface CfnLocalGatewayVirtualInterfaceGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnLocalGatewayVirtualInterfaceGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnLocalGatewayVirtualInterfaceGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnLocalGatewayVirtualInterfaceGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnLocalGatewayVirtualInterfaceGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnLocalGatewayVirtualInterfaceGroupMixinProps |
Properties for CfnLocalGatewayVirtualInterfaceGroupPropsMixin.
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 cfnLocalGatewayVirtualInterfaceGroupMixinProps: ec2_mixins.CfnLocalGatewayVirtualInterfaceGroupMixinProps = {
localBgpAsn: 123,
localBgpAsnExtended: 123,
localGatewayId: 'localGatewayId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| local | number | The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP). |
| local | number | The extended 32-bit ASN for the local BGP configuration. |
| local | string | The ID of the local gateway. |
| tags? | Cfn[] | The tags assigned to the virtual interface group. |
localBgpAsn?
Type:
number
(optional)
The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP).
localBgpAsnExtended?
Type:
number
(optional)
The extended 32-bit ASN for the local BGP configuration.
localGatewayId?
Type:
string
(optional)
The ID of the local gateway.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the virtual interface group.

.NET
Go
Java
Python
TypeScript