Request Service Quota Increase
servicequotas_request_service_quota_increase | R Documentation |
Submits a quota increase request for the specified quota¶
Description¶
Submits a quota increase request for the specified quota.
Usage¶
Arguments¶
ServiceCode
[required] Specifies the service identifier. To find the service code value for an Amazon Web Services service, use the
list_services
operation.QuotaCode
[required] Specifies the quota identifier. To find the quota code for a specific quota, use the
list_service_quotas
operation, and look for theQuotaCode
response in the output for the quota you want.DesiredValue
[required] Specifies the new, increased value for the quota.
ContextId
Specifies the Amazon Web Services account or resource to which the quota applies. The value in this field depends on the context scope associated with the specified service quota.
Value¶
A list with the following syntax:
list(
RequestedQuota = list(
Id = "string",
CaseId = "string",
ServiceCode = "string",
ServiceName = "string",
QuotaCode = "string",
QuotaName = "string",
DesiredValue = 123.0,
Status = "PENDING"|"CASE_OPENED"|"APPROVED"|"DENIED"|"CASE_CLOSED"|"NOT_APPROVED"|"INVALID_REQUEST",
Created = as.POSIXct(
"2015-01-01"
),
LastUpdated = as.POSIXct(
"2015-01-01"
),
Requester = "string",
QuotaArn = "string",
GlobalQuota = TRUE|FALSE,
Unit = "string",
QuotaRequestedAtLevel = "ACCOUNT"|"RESOURCE"|"ALL",
QuotaContext = list(
ContextScope = "RESOURCE"|"ACCOUNT",
ContextScopeType = "string",
ContextId = "string"
)
)
)