Skip to main content

assessment_framework_share_requests

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

Overview

Nameassessment_framework_share_requests
TypeResource
Idaws.auditmanager.assessment_framework_share_requests

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
assessment_framework_share_requestsarrayThe list of share requests that the ListAssessmentFrameworkShareRequests API returned.
next_tokenstringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_assessment_framework_share_requestsselectrequestType, regionnextToken, maxResultsReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
requestTypestringSpecifies whether the share request is a sent request or a received request.
maxResultsintegerRepresents the maximum number of results on a page or for an API request call.
nextTokenstringThe pagination token that's used to fetch the next set of results.

SELECT examples

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 }}'
;