Skip to main content

support_permit_requests

Creates, updates, deletes, gets or lists a support_permit_requests resource.

Overview

Namesupport_permit_requests
TypeResource
Idaws.supportauthz.support_permit_requests

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_atstring (date-time)The timestamp when the request was created.
permitobjectThe permit definition specifying the authorized actions, resources, and time-window conditions for a support operator.
request_arnstringThe ARN of the permit request. (pattern: <code>[a-zA-Z0-9:/-]{1,512}</code>)
statusstringThe current status of the permit request. (PENDING, ACCEPTED, REJECTED, CANCELLED)
support_case_display_idstringThe display identifier of the support case associated with the request. (pattern: <code>[a-zA-Z0-9:/-]{1,512}</code>)
updated_atstring (date-time)The timestamp when the request was last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_support_permit_requestsselectregionnextToken, maxResults, supportCaseDisplayIdLists permit requests from AWS support operators. Use pagination to ensure that the operation returns quickly and successfully.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return in a single call. Valid range is 1 to 100.
nextTokenstringThe token for the next page of results.
supportCaseDisplayIdstringFilters the results by support case display identifier.

SELECT examples

Lists permit requests from AWS support operators. Use pagination to ensure that the operation returns quickly and successfully.

SELECT
created_at,
permit,
request_arn,
status,
support_case_display_id,
updated_at
FROM aws.supportauthz.support_permit_requests
WHERE region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
AND supportCaseDisplayId = '{{ supportCaseDisplayId }}'
;