GetRouteTableRoute constructor

const GetRouteTableRoute({
  1. required Input<String> carrierGatewayId,
  2. required Input<String> cidrBlock,
  3. required Input<String> coreNetworkArn,
  4. required Input<String> destinationPrefixListId,
  5. required Input<String> egressOnlyGatewayId,
  6. required Input<String> gatewayId,
  7. required Input<String> instanceId,
  8. required Input<String> ipv6CidrBlock,
  9. required Input<String> localGatewayId,
  10. required Input<String> natGatewayId,
  11. required Input<String> networkInterfaceId,
  12. required Input<String> odbNetworkArn,
  13. required Input<String> transitGatewayId,
  14. required Input<String> vpcEndpointId,
  15. required Input<String> vpcPeeringConnectionId,
})

Creates a new GetRouteTableRoute. carrierGatewayId ID of the Carrier Gateway. cidrBlock CIDR block of the route. coreNetworkArn ARN of the core network. destinationPrefixListId The ID of a managed prefix list destination of the route. egressOnlyGatewayId ID of the Egress Only Internet Gateway. gatewayId ID of an Internet Gateway or Virtual Private Gateway which is connected to the Route Table (not exported if not passed as a parameter). instanceId EC2 instance ID. ipv6CidrBlock IPv6 CIDR block of the route. localGatewayId Local Gateway ID. natGatewayId NAT Gateway ID. networkInterfaceId ID of the elastic network interface (eni) to use. odbNetworkArn ARN of the ODB network. transitGatewayId EC2 Transit Gateway ID. vpcEndpointId VPC Endpoint ID. vpcPeeringConnectionId VPC Peering ID.

Implementation

const GetRouteTableRoute({
  required this.carrierGatewayId,
  required this.cidrBlock,
  required this.coreNetworkArn,
  required this.destinationPrefixListId,
  required this.egressOnlyGatewayId,
  required this.gatewayId,
  required this.instanceId,
  required this.ipv6CidrBlock,
  required this.localGatewayId,
  required this.natGatewayId,
  required this.networkInterfaceId,
  required this.odbNetworkArn,
  required this.transitGatewayId,
  required this.vpcEndpointId,
  required this.vpcPeeringConnectionId,
});