Module Location.Map_

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-location-map.html

type map_configuration = {
  1. political_view : string option;
  2. style : string;
  3. custom_layers : string list option;
}

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

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

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

type properties = {
  1. map_name : string;
  2. description : string option;
  3. configuration : map_configuration;
  4. pricing_plan : string option;
  5. tags : tag list option;
}

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

val make_properties : map_name:string -> ?description:string -> configuration:map_configuration -> ?pricing_plan:string -> ?tags:tag list -> unit -> properties
val make_map_configuration : ?political_view:string -> style:string -> ?custom_layers:string list -> unit -> map_configuration
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_map_configuration : map_configuration -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `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. create_time : string;
  3. update_time : string;
  4. arn : string;
  5. map_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string