Skip to content

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 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 the QuotaCode response in the output for the quota you want.

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

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
)