actions
Creates, updates, deletes, gets or lists an actions resource.
Overview
| Name | actions |
| Type | Resource |
| Id | aws.supportauthz.actions |
Fields
The following fields are returned by SELECT queries:
- get_action
- list_actions
| Name | Datatype | Description |
|---|---|---|
action | string | The name of the support action. (pattern: <code>[a-z][a-z0-9-]*:[A-Za-z0-9_.-]+</code>) |
description | string | A description of what the support action does. |
service | string | The AWS service associated with the support action. (pattern: <code>[a-zA-Z0-9-]+</code>) |
| Name | Datatype | Description |
|---|---|---|
action | string | The name of the support action. (pattern: <code>[a-z][a-z0-9-]*:[A-Za-z0-9_.-]+</code>) |
description | string | A description of what the support action does. |
service | string | The AWS service associated with the support action. (pattern: <code>[a-zA-Z0-9-]+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_action | select | action, region | Retrieves the description of a specific support action. | |
list_actions | select | service, region | nextToken, maxResults | Lists 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.
| Name | Datatype | Description |
|---|---|---|
action | string | The name of the support action to retrieve. |
region | string | AWS region (default: us-east-1) |
service | string | The name of the AWS service for which to list available support actions. |
maxResults | integer | The maximum number of results to return in a single call. Valid range is 1 to 100. |
nextToken | string | The token for the next page of results. |
SELECT examples
- get_action
- list_actions
Retrieves the description of a specific support action.
SELECT
action,
description,
service
FROM aws.supportauthz.actions
WHERE action = '{{ action }}' -- required
AND region = '{{ region }}' -- required
;
Lists available support actions for a specified AWS service. Use pagination to ensure that the operation returns quickly and successfully.
SELECT
action,
description,
service
FROM aws.supportauthz.actions
WHERE service = '{{ service }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;