Module Location.PlaceIndex

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

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

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

and data_source_configuration = {
  1. intended_use : string option;
}

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

type properties = {
  1. index_name : string;
  2. description : string option;
  3. pricing_plan : string option;
  4. data_source_configuration : data_source_configuration option;
  5. tags : tag list option;
  6. data_source : string;
}

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

val make_properties : index_name:string -> ?description:string -> ?pricing_plan:string -> ?data_source_configuration:data_source_configuration -> ?tags:tag list -> data_source:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_data_source_configuration : ?intended_use:string -> unit -> data_source_configuration
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_data_source_configuration : data_source_configuration -> [> `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. index_arn : string;
  3. create_time : string;
  4. update_time : string;
  5. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string