GetRouteTableRoute.fromMap constructor

GetRouteTableRoute.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory GetRouteTableRoute.fromMap(Map<String, dynamic> map) {
  return GetRouteTableRoute(
    carrierGatewayId: pulumi.Input.fromValue(map['carrierGatewayId'] as String),
    cidrBlock: pulumi.Input.fromValue(map['cidrBlock'] as String),
    coreNetworkArn: pulumi.Input.fromValue(map['coreNetworkArn'] as String),
    destinationPrefixListId: pulumi.Input.fromValue(map['destinationPrefixListId'] as String),
    egressOnlyGatewayId: pulumi.Input.fromValue(map['egressOnlyGatewayId'] as String),
    gatewayId: pulumi.Input.fromValue(map['gatewayId'] as String),
    instanceId: pulumi.Input.fromValue(map['instanceId'] as String),
    ipv6CidrBlock: pulumi.Input.fromValue(map['ipv6CidrBlock'] as String),
    localGatewayId: pulumi.Input.fromValue(map['localGatewayId'] as String),
    natGatewayId: pulumi.Input.fromValue(map['natGatewayId'] as String),
    networkInterfaceId: pulumi.Input.fromValue(map['networkInterfaceId'] as String),
    odbNetworkArn: pulumi.Input.fromValue(map['odbNetworkArn'] as String),
    transitGatewayId: pulumi.Input.fromValue(map['transitGatewayId'] as String),
    vpcEndpointId: pulumi.Input.fromValue(map['vpcEndpointId'] as String),
    vpcPeeringConnectionId: pulumi.Input.fromValue(map['vpcPeeringConnectionId'] as String),
  );
}