Module NetworkManager.Device

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and location = {
  1. address : string option;
  2. latitude : string option;
  3. longitude : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-location.html

and aws_location = {
  1. zone : string option;
  2. subnet_arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-device-awslocation.html

type properties = {
  1. site_id : string option;
  2. aws_location : aws_location option;
  3. type_ : string option;
  4. description : string option;
  5. global_network_id : string;
  6. serial_number : string option;
  7. model : string option;
  8. vendor : string option;
  9. tags : tag list option;
  10. location : location option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-device.html;

val make_properties : ?site_id:string -> ?aws_location:aws_location -> ?type_:string -> ?description:string -> global_network_id:string -> ?serial_number:string -> ?model:string -> ?vendor:string -> ?tags:tag list -> ?location:location -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_location : ?address:string -> ?latitude:string -> ?longitude:string -> unit -> location
val make_aws_location : ?zone:string -> ?subnet_arn:string -> unit -> aws_location
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_location : location -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_aws_location : aws_location -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. device_arn : string;
  3. device_id : string;
  4. state : string;
  5. created_at : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string