assessment_framework_share_requests
Creates, updates, deletes, gets or lists an assessment_framework_share_requests resource.
Overview
| Name | assessment_framework_share_requests |
| Type | Resource |
| Id | aws.auditmanager.assessment_framework_share_requests |
Fields
The following fields are returned by SELECT queries:
- list_assessment_framework_share_requests
| Name | Datatype | Description |
|---|---|---|
assessment_framework_share_requests | array | The list of share requests that the ListAssessmentFrameworkShareRequests API returned. |
next_token | string | The pagination token that's used to fetch the next set of results. (pattern: <code>^[A-Za-z0-9+/=]*$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_assessment_framework_share_requests | select | requestType, region | nextToken, maxResults | Returns a list of sent or received share requests for custom frameworks in Audit Manager. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
requestType | string | Specifies whether the share request is a sent request or a received request. |
maxResults | integer | Represents the maximum number of results on a page or for an API request call. |
nextToken | string | The pagination token that's used to fetch the next set of results. |
SELECT examples
- list_assessment_framework_share_requests
Returns a list of sent or received share requests for custom frameworks in Audit Manager.
SELECT
assessment_framework_share_requests,
next_token
FROM aws.auditmanager.assessment_framework_share_requests
WHERE requestType = '{{ requestType }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;