/* 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. */ /** * The tags for the local gateway route table virtual interface group association. */ export type Tags = Tag[]; /** * Describes a local gateway route table virtual interface group association for a local gateway. */ export interface AwsEc2Localgatewayroutetablevirtualinterfacegroupassociation { /** * The ID of the local gateway route table virtual interface group association. */ LocalGatewayRouteTableVirtualInterfaceGroupAssociationId?: string; /** * The ID of the local gateway. */ LocalGatewayId?: string; /** * The ID of the local gateway route table. */ LocalGatewayRouteTableId: string; /** * The ARN of the local gateway route table. */ LocalGatewayRouteTableArn?: string; /** * The ID of the local gateway route table virtual interface group. */ LocalGatewayVirtualInterfaceGroupId: string; /** * The owner of the local gateway route table virtual interface group association. */ OwnerId?: string; /** * The state of the local gateway route table virtual interface group association. */ State?: string; Tags?: Tags; } export interface Tag { Key?: string; Value?: string; }