Module ApiGateway.RestApi

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html

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

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

and s3_location = {
  1. bucket : string option;
  2. e_tag : string option;
  3. version : string option;
  4. key : string option;
}

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

and endpoint_configuration = {
  1. types : string list option;
  2. vpc_endpoint_ids : string list option;
}

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

type properties = {
  1. policy : Yojson.Safe.t option;
  2. body_s3_location : s3_location option;
  3. description : string option;
  4. minimum_compression_size : int option;
  5. parameters : string Stdlib__Map.Make(Stdlib.String).t option;
  6. clone_from : string option;
  7. mode : string option;
  8. disable_execute_api_endpoint : bool option;
  9. fail_on_warnings : bool option;
  10. binary_media_types : string list option;
  11. name : string option;
  12. api_key_source_type : string option;
  13. endpoint_configuration : endpoint_configuration option;
  14. body : Yojson.Safe.t option;
  15. tags : tag list option;
}

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

val make_properties : ?policy:Yojson.Safe.t -> ?body_s3_location:s3_location -> ?description:string -> ?minimum_compression_size:int -> ?parameters:string Stdlib__Map.Make(Stdlib.String).t -> ?clone_from:string -> ?mode:string -> ?disable_execute_api_endpoint:bool -> ?fail_on_warnings:bool -> ?binary_media_types:string list -> ?name:string -> ?api_key_source_type:string -> ?endpoint_configuration:endpoint_configuration -> ?body:Yojson.Safe.t -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_s3_location : ?bucket:string -> ?e_tag:string -> ?version:string -> ?key:string -> unit -> s3_location
val make_endpoint_configuration : ?types:string list -> ?vpc_endpoint_ids:string list -> unit -> endpoint_configuration
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_s3_location : s3_location -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_endpoint_configuration : endpoint_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. root_resource_id : string;
  3. rest_api_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string