Module Values.GetHostedZoneLimitResponseSource

A complex type that contains the requested limit.

Sourcetype nonrec t = {
  1. limit : HostedZoneLimit.t option;
    (*

    The current setting for the specified limit. For example, if you specified MAX_RRSETS_BY_ZONE for the value of Type in the request, the value of Limit is the maximum number of records that you can create in the specified hosted zone.

    *)
  2. count : UsageCount.t option;
    (*

    The current number of entities that you have created of the specified type. For example, if you specified MAX_RRSETS_BY_ZONE for the value of Type in the request, the value of Count is the current number of records that you have created in the specified hosted zone.

    *)
}
Sourcetype nonrec error = [
  1. | `HostedZoneNotPrivate of HostedZoneNotPrivate.t
  2. | `InvalidInput of InvalidInput.t
  3. | `NoSuchHostedZone of NoSuchHostedZone.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?limit:??? -> ?count:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `HostedZoneNotPrivate of HostedZoneNotPrivate.t | `InvalidInput of InvalidInput.t | `NoSuchHostedZone of NoSuchHostedZone.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `HostedZoneNotPrivate of HostedZoneNotPrivate.t | `InvalidInput of InvalidInput.t | `NoSuchHostedZone of NoSuchHostedZone.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of UsageCount.t | `Structure of (string * [> `Enum of string | `Long of LimitValue.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