ApiGateway.ApiKey
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-apikey-stagekey.html
type properties = {
description : string option;
stage_keys : stage_key list option;
value : string option;
enabled : bool option;
customer_id : string option;
generate_distinct_id : bool option;
name : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html;
val make_properties :
?description:string ->
?stage_keys:stage_key list ->
?value:string ->
?enabled:bool ->
?customer_id:string ->
?generate_distinct_id:bool ->
?tags:tag list ->
?name:string ->
unit ->
properties
val make_tag : value:string -> key:string -> unit -> tag
val make_stage_key :
?stage_name:string ->
?rest_api_id:string ->
unit ->
stage_key
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_stage_key :
stage_key ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes