Description Usage Arguments Value Request syntax
View source: R/servicequotas_operations.R
Retrieves the quota increase requests for the specified service.
1 2 | servicequotas_list_requested_service_quota_change_history(ServiceCode,
Status, NextToken, MaxResults)
|
ServiceCode |
The service identifier. |
Status |
The status of the quota increase request. |
NextToken |
The token for the next page of results. |
MaxResults |
The maximum number of results to return with a single call. To retrieve the remaining results, if any, make another call with the token returned from this call. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | list(
NextToken = "string",
RequestedQuotas = list(
list(
Id = "string",
CaseId = "string",
ServiceCode = "string",
ServiceName = "string",
QuotaCode = "string",
QuotaName = "string",
DesiredValue = 123.0,
Status = "PENDING"|"CASE_OPENED"|"APPROVED"|"DENIED"|"CASE_CLOSED",
Created = as.POSIXct(
"2015-01-01"
),
LastUpdated = as.POSIXct(
"2015-01-01"
),
Requester = "string",
QuotaArn = "string",
GlobalQuota = TRUE|FALSE,
Unit = "string"
)
)
)
|
1 2 3 4 5 6 | svc$list_requested_service_quota_change_history(
ServiceCode = "string",
Status = "PENDING"|"CASE_OPENED"|"APPROVED"|"DENIED"|"CASE_CLOSED",
NextToken = "string",
MaxResults = 123
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.