/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Associates a gateway with a route table. The gateway and route table must be in the same VPC. This association causes the incoming traffic to the gateway to be routed according to the routes in the route table. */ export interface AwsEc2Gatewayroutetableassociation { /** * The ID of the route table. */ RouteTableId: string; /** * The ID of the gateway. */ GatewayId: string; /** * The route table association ID. */ AssociationId?: string; }