Module Values.CreateUsagePlanRequestSource

The POST request to create a usage plan with the name, description, throttle limits and quota limits, as well as the associated API stages, specified in the payload.

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

    The name of the usage plan.

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

    The description of the usage plan.

    *)
  3. apiStages : ListOfApiStage.t option;
    (*

    The associated API stages of the usage plan.

    *)
  4. throttle : ThrottleSettings.t option;
    (*

    The throttling limits of the usage plan.

    *)
  5. quota : QuotaSettings.t option;
    (*

    The quota of the usage plan.

    *)
  6. tags : MapOfStringToString.t option;
    (*

    The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:. The tag value can be up to 256 characters.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?apiStages:??? -> ?throttle:??? -> ?quota:??? -> ?tags:??? -> name:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.t ]) list ]) list | `String of String_.t ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of String_.t | `Structure of (string * [> `Double of Double.t | `Enum of string | `Integer of Integer.t ]) list ]) 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