Location.Map_
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-location-map.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-location-map-mapconfiguration.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
type properties = {
map_name : string;
description : string option;
configuration : map_configuration;
pricing_plan : string 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 ]
val create_attributes : string -> attributes