Request Service Quota Increase
| servicequotas_request_service_quota_increase | R Documentation | 
Submits a quota increase request for the specified quota at the account or resource level¶
Description¶
Submits a quota increase request for the specified quota at the account or resource level.
Usage¶
servicequotas_request_service_quota_increase(ServiceCode, QuotaCode,
  DesiredValue, ContextId, SupportCaseAllowed)
Arguments¶
ServiceCode | 
[required] Specifies the service identifier. To find the service
code value for an Amazon Web Services service, use the
  | 
QuotaCode | 
[required] Specifies the quota identifier. To find the quota code
for a specific quota, use the   | 
DesiredValue | 
[required] Specifies the new, increased value for the quota.  | 
ContextId | 
Specifies the resource with an Amazon Resource Name (ARN).  | 
SupportCaseAllowed | 
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   | 
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"
    )
  )
)
Request syntax¶
svc$request_service_quota_increase(
  ServiceCode = "string",
  QuotaCode = "string",
  DesiredValue = 123.0,
  ContextId = "string",
  SupportCaseAllowed = TRUE|FALSE
)