list_requested_service_quota_change_history

ServiceQuotas.Client.list_requested_service_quota_change_history(**kwargs)

Retrieves the quota increase requests for the specified service.

See also: AWS API Documentation

Request Syntax

response = client.list_requested_service_quota_change_history(
    ServiceCode='string',
    Status='PENDING'|'CASE_OPENED'|'APPROVED'|'DENIED'|'CASE_CLOSED',
    NextToken='string',
    MaxResults=123
)
Parameters
  • ServiceCode (string) -- The service identifier.
  • Status (string) -- The status of the quota increase request.
  • NextToken (string) -- The token for the next page of results.
  • MaxResults (integer) -- 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.
Return type

dict

Returns

Response Syntax

{
    'NextToken': 'string',
    'RequestedQuotas': [
        {
            'Id': 'string',
            'CaseId': 'string',
            'ServiceCode': 'string',
            'ServiceName': 'string',
            'QuotaCode': 'string',
            'QuotaName': 'string',
            'DesiredValue': 123.0,
            'Status': 'PENDING'|'CASE_OPENED'|'APPROVED'|'DENIED'|'CASE_CLOSED',
            'Created': datetime(2015, 1, 1),
            'LastUpdated': datetime(2015, 1, 1),
            'Requester': 'string',
            'QuotaArn': 'string',
            'GlobalQuota': True|False,
            'Unit': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • NextToken (string) --

      The token to use to retrieve the next page of results. This value is null when there are no more results to return.

    • RequestedQuotas (list) --

      Information about the quota increase requests.

      • (dict) --

        Information about a quota increase request.

        • Id (string) --

          The unique identifier.

        • CaseId (string) --

          The case ID.

        • ServiceCode (string) --

          The service identifier.

        • ServiceName (string) --

          The service name.

        • QuotaCode (string) --

          The quota identifier.

        • QuotaName (string) --

          The quota name.

        • DesiredValue (float) --

          The new, increased value for the quota.

        • Status (string) --

          The state of the quota increase request.

        • Created (datetime) --

          The date and time when the quota increase request was received and the case ID was created.

        • LastUpdated (datetime) --

          The date and time of the most recent change.

        • Requester (string) --

          The IAM identity of the requester.

        • QuotaArn (string) --

          The Amazon Resource Name (ARN) of the quota.

        • GlobalQuota (boolean) --

          Indicates whether the quota is global.

        • Unit (string) --

          The unit of measurement.

Exceptions

  • ServiceQuotas.Client.exceptions.AccessDeniedException
  • ServiceQuotas.Client.exceptions.NoSuchResourceException
  • ServiceQuotas.Client.exceptions.IllegalArgumentException
  • ServiceQuotas.Client.exceptions.InvalidPaginationTokenException
  • ServiceQuotas.Client.exceptions.ServiceException
  • ServiceQuotas.Client.exceptions.TooManyRequestsException