Module ApiGateway.Model

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

type properties = {
  1. description : string option;
  2. content_type : string option;
  3. schema : Yojson.Safe.t option;
  4. rest_api_id : string;
  5. name : string option;
}

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

val make_properties : ?description:string -> ?content_type:string -> ?schema:Yojson.Safe.t -> rest_api_id:string -> ?name:string -> unit -> properties
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string