Values.RequestServiceQuotaIncreaseRequestSourceSubmits a quota increase request for the specified quota at the account or resource level.
type nonrec t = {serviceCode : ServiceCode.t;Specifies the service identifier. To find the service code value for an Amazon Web Services service, use the ListServices operation.
*)quotaCode : QuotaCode.t;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.
*)desiredValue : QuotaValue.t;Specifies the new, increased value for the quota.
*)contextId : QuotaContextId.t option;Specifies the resource with an Amazon Resource Name (ARN).
*)supportCaseAllowed : SupportCaseAllowed.t option;Specifies if an Amazon Web Services Support case can be opened for the quota increase request. This parameter is optional. By default, this flag is set to True and Amazon Web Services may create a support case for some quota increase requests. You can set this flag to False if you do not want a support case created when you request a quota increase. If you set the flag to False, Amazon Web Services does not open a support case and updates the request status to Not approved.
*)}val make :
?contextId:??? ->
?supportCaseAllowed:??? ->
serviceCode:ServiceCode.t ->
quotaCode:QuotaCode.t ->
desiredValue:QuotaValue.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of SupportCaseAllowed.t
| `Double of QuotaValue.t
| `String of ServiceCode.t ])
list ]