/* 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::Device type describes a device. */ export interface AwsNetworkmanagerDevice { /** * The Amazon Resource Name (ARN) of the device. */ DeviceArn?: string; /** * The ID of the device. */ DeviceId?: string; /** * The description of the device. */ Description?: string; /** * The tags for the device. */ Tags?: Tag[]; /** * The ID of the global network. */ GlobalNetworkId: string; Location?: Location; /** * The device model */ Model?: string; /** * The device serial number. */ SerialNumber?: string; /** * The site ID. */ SiteId?: string; /** * The device type. */ Type?: string; /** * The device vendor. */ Vendor?: string; } /** * A key-value pair to associate with a device resource. */ export interface Tag { Key?: string; Value?: string; } /** * The site location. */ export interface Location { /** * The physical address. */ Address?: string; /** * The latitude. */ Latitude?: string; /** * The longitude. */ Longitude?: string; }