interface CfnLocalGatewayRouteMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnLocalGatewayRouteMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnLocalGatewayRouteMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnLocalGatewayRouteMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnLocalGatewayRouteMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnLocalGatewayRouteMixinProps |
Properties for CfnLocalGatewayRoutePropsMixin.
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 cfnLocalGatewayRouteMixinProps: ec2_mixins.CfnLocalGatewayRouteMixinProps = {
destinationCidrBlock: 'destinationCidrBlock',
localGatewayRouteTableId: 'localGatewayRouteTableId',
localGatewayVirtualInterfaceGroupId: 'localGatewayVirtualInterfaceGroupId',
networkInterfaceId: 'networkInterfaceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The CIDR block used for destination matches. |
| local | string | The ID of the local gateway route table. |
| local | string | The ID of the virtual interface group. |
| network | string | The ID of the network interface. |
destinationCidrBlock?
Type:
string
(optional)
The CIDR block used for destination matches.
localGatewayRouteTableId?
Type:
string
(optional)
The ID of the local gateway route table.
localGatewayVirtualInterfaceGroupId?
Type:
string
(optional)
The ID of the virtual interface group.
networkInterfaceId?
Type:
string
(optional)
The ID of the network interface.

.NET
Go
Java
Python
TypeScript