Module Values.ServiceQuotaSource

Information about a quota.

Sourcetype nonrec t = {
  1. serviceCode : ServiceCode.t option;
    (*

    Specifies the service identifier. To find the service code value for an Amazon Web Services service, use the ListServices operation.

    *)
  2. serviceName : ServiceName.t option;
    (*

    Specifies the service name.

    *)
  3. quotaArn : QuotaArn.t option;
    (*

    The Amazon Resource Name (ARN) of the quota.

    *)
  4. quotaCode : QuotaCode.t option;
    (*

    Specifies the quota identifier. To find the quota code for a specific quota, use the ListServiceQuotas operation, and look for the QuotaCode response in the output for the quota you want.

    *)
  5. quotaName : QuotaName.t option;
    (*

    Specifies the quota name.

    *)
  6. value : QuotaValue.t option;
    (*

    The quota value.

    *)
  7. unit : QuotaUnit.t option;
    (*

    The unit of measurement.

    *)
  8. adjustable : QuotaAdjustable.t option;
    (*

    Indicates whether the quota value can be increased.

    *)
  9. globalQuota : GlobalQuota.t option;
    (*

    Indicates whether the quota is global.

    *)
  10. usageMetric : MetricInfo.t option;
    (*

    Information about the measurement.

    *)
  11. period : QuotaPeriod.t option;
    (*

    The period of time.

    *)
  12. errorReason : ErrorReason.t option;
    (*

    The error code and error reason.

    *)
  13. quotaAppliedAtLevel : AppliedLevelEnum.t option;
    (*

    Filters the response to return applied quota values for the ACCOUNT, RESOURCE, or ALL levels. ACCOUNT is the default.

    *)
  14. quotaContext : QuotaContextInfo.t option;
    (*

    The context for this service quota.

    *)
  15. description : QuotaDescription.t option;
    (*

    The quota description.

    *)
}
Sourceval make : ?serviceCode:??? -> ?serviceName:??? -> ?quotaArn:??? -> ?quotaCode:??? -> ?quotaName:??? -> ?value:??? -> ?unit:??? -> ?adjustable:??? -> ?globalQuota:??? -> ?usageMetric:??? -> ?period:??? -> ?errorReason:??? -> ?quotaAppliedAtLevel:??? -> ?quotaContext:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of QuotaAdjustable.t | `Double of QuotaValue.t | `Enum of string | `String of ServiceCode.t | `Structure of (string * [> `Enum of string | `Integer of PeriodValue.t | `Map of ([> `String of MetricDimensionName.t ] * [> `String of MetricDimensionValue.t ]) list | `String of QuotaMetricNamespace.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