Module Location.APIKey

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

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

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

and api_key_restrictions = {
  1. allow_actions : string list;
  2. allow_resources : string list;
  3. allow_referers : string list option;
}

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

type properties = {
  1. key_name : string;
  2. description : string option;
  3. no_expiry : bool option;
  4. force_delete : bool option;
  5. expire_time : string option;
  6. force_update : bool option;
  7. restrictions : api_key_restrictions;
  8. tags : tag list option;
}

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

val make_properties : key_name:string -> ?description:string -> ?no_expiry:bool -> ?force_delete:bool -> ?expire_time:string -> ?force_update:bool -> restrictions:api_key_restrictions -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_api_key_restrictions : allow_actions:string list -> allow_resources:string list -> ?allow_referers:string list -> unit -> api_key_restrictions
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_api_key_restrictions : api_key_restrictions -> [> `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. key_arn : string;
  5. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string