Module ApiGateway.ApiKey

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-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 stage_key = {
  1. stage_name : string option;
  2. rest_api_id : string option;
}

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

type properties = {
  1. description : string option;
  2. stage_keys : stage_key list option;
  3. value : string option;
  4. enabled : bool option;
  5. customer_id : string option;
  6. generate_distinct_id : bool option;
  7. tags : tag list option;
  8. 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 ]
type attributes = {
  1. ref_ : string;
  2. api_key_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string