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