Module Values.ServiceQuotaIncreaseRequestInTemplateSource

Information about a quota increase request.

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. 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.

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

    Specifies the quota name.

    *)
  5. desiredValue : QuotaValue.t option;
    (*

    The new, increased value of the quota.

    *)
  6. awsRegion : AwsRegion.t option;
    (*

    The Amazon Web Services Region.

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

    The unit of measurement.

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

    Indicates whether the quota is global.

    *)
}
Sourceval make : ?serviceCode:??? -> ?serviceName:??? -> ?quotaCode:??? -> ?quotaName:??? -> ?desiredValue:??? -> ?awsRegion:??? -> ?unit:??? -> ?globalQuota:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of GlobalQuota.t | `Double of QuotaValue.t | `String of ServiceCode.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