Module ApiGateway.DocumentationPart

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

type location = {
  1. path : string option;
  2. type_ : string option;
  3. method_ : string option;
  4. status_code : string option;
  5. name : string option;
}

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

type properties = {
  1. rest_api_id : string;
  2. properties_ : string;
  3. location : location;
}

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

val make_properties : rest_api_id:string -> properties_:string -> location:location -> unit -> properties
val make_location : ?path:string -> ?type_:string -> ?method_:string -> ?status_code:string -> ?name:string -> unit -> location
val yojson_of_location : location -> [> `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. documentation_part_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string