/* 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::LinkAssociation type associates a link to a device. The device and link must be in the same global network and the same site. */ export interface AwsNetworkmanagerLinkassociation { /** * The ID of the global network. */ GlobalNetworkId: string; /** * The ID of the device */ DeviceId: string; /** * The ID of the link */ LinkId: string; }