Skip to content

Get Service Quota Increase Request From Template

servicequotas_get_service_quota_increase_request_from_template R Documentation

Retrieves information about the specified quota increase request in your quota request template

Description

Retrieves information about the specified quota increase request in your quota request template.

Usage

servicequotas_get_service_quota_increase_request_from_template(
  ServiceCode, QuotaCode, AwsRegion)

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.

AwsRegion

[required] Specifies the Amazon Web Services Region for which you made the request.

Value

A list with the following syntax:

list(
  ServiceQuotaIncreaseRequestInTemplate = list(
    ServiceCode = "string",
    ServiceName = "string",
    QuotaCode = "string",
    QuotaName = "string",
    DesiredValue = 123.0,
    AwsRegion = "string",
    Unit = "string",
    GlobalQuota = TRUE|FALSE
  )
)

Request syntax

svc$get_service_quota_increase_request_from_template(
  ServiceCode = "string",
  QuotaCode = "string",
  AwsRegion = "string"
)