Module Values.ReusableDelegationSetLimitSource

A complex type that contains the type of limit that you specified in the request and the current value for that limit.

Sourcetype nonrec t = {
  1. type_ : ReusableDelegationSetLimitType.t option;
    (*

    The limit that you requested: MAX_ZONES_BY_REUSABLE_DELEGATION_SET, the maximum number of hosted zones that you can associate with the specified reusable delegation set.

    *)
  2. value : LimitValue.t option;
    (*

    The current value for the MAX_ZONES_BY_REUSABLE_DELEGATION_SET limit.

    *)
}
Sourceval make : ?type_:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of LimitValue.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