Module Values.CreateDocumentationVersionRequestSource

Creates a new documentation version of a given API.

Sourcetype nonrec t = {
  1. restApiId : String_.t;
    (*

    The string identifier of the associated RestApi.

    *)
  2. documentationVersion : String_.t;
    (*

    The version identifier of the new snapshot.

    *)
  3. stageName : String_.t option;
    (*

    The stage name to be associated with the new documentation snapshot.

    *)
  4. description : String_.t option;
    (*

    A description about the new documentation snapshot.

    *)
}
Sourceval context_ : string
Sourceval make : ?stageName:??? -> ?description:??? -> restApiId:String_.t -> documentationVersion:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t