ApiGateway.Model
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html
type properties = {
description : string option;
content_type : string option;
schema : Yojson.Safe.t option;
rest_api_id : string;
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 ]
val create_attributes : string -> attributes