Module NetworkManager.Site

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-site.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-site-location.html

type properties = {
  1. description : string option;
  2. global_network_id : string;
  3. tags : tag list option;
  4. location : location option;
}

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

val make_properties : ?description:string -> global_network_id: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 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_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. site_id : string;
  3. site_arn : string;
  4. state : string;
  5. created_at : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string