/* 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 AWS::NetworkManager::CustomerGatewayAssociation type associates a customer gateway with a device and optionally, with a link. */ export interface AwsNetworkmanagerCustomergatewayassociation { /** * The ID of the global network. */ GlobalNetworkId: string; /** * The Amazon Resource Name (ARN) of the customer gateway. */ CustomerGatewayArn: string; /** * The ID of the device */ DeviceId: string; /** * The ID of the link */ LinkId?: string; }