Skip to main content

actions

Creates, updates, deletes, gets or lists an actions resource.

Overview

Nameactions
TypeResource
Idaws.supportauthz.actions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
actionstringThe name of the support action. (pattern: <code>[a-z][a-z0-9-]*:[A-Za-z0-9_.-]+</code>)
descriptionstringA description of what the support action does.
servicestringThe AWS service associated with the support action. (pattern: <code>[a-zA-Z0-9-]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_actionselectaction, regionRetrieves the description of a specific support action.
list_actionsselectservice, regionnextToken, maxResultsLists available support actions for a specified AWS service. 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
actionstringThe name of the support action to retrieve.
regionstringAWS region (default: us-east-1)
servicestringThe name of the AWS service for which to list available support actions.
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.

SELECT examples

Retrieves the description of a specific support action.

SELECT
action,
description,
service
FROM aws.supportauthz.actions
WHERE action = '{{ action }}' -- required
AND region = '{{ region }}' -- required
;