List Assessment Framework Share Requests
auditmanager_list_assessment_framework_share_requests | R Documentation |
Returns a list of sent or received share requests for custom frameworks in Audit Manager¶
Description¶
Returns a list of sent or received share requests for custom frameworks in Audit Manager.
Usage¶
Arguments¶
requestType
[required] Specifies whether the share request is a sent request or a received request.
nextToken
The pagination token that's used to fetch the next set of results.
maxResults
Represents the maximum number of results on a page or for an API request call.
Value¶
A list with the following syntax:
list(
assessmentFrameworkShareRequests = list(
list(
id = "string",
frameworkId = "string",
frameworkName = "string",
frameworkDescription = "string",
status = "ACTIVE"|"REPLICATING"|"SHARED"|"EXPIRING"|"FAILED"|"EXPIRED"|"DECLINED"|"REVOKED",
sourceAccount = "string",
destinationAccount = "string",
destinationRegion = "string",
expirationTime = as.POSIXct(
"2015-01-01"
),
creationTime = as.POSIXct(
"2015-01-01"
),
lastUpdated = as.POSIXct(
"2015-01-01"
),
comment = "string",
standardControlsCount = 123,
customControlsCount = 123,
complianceType = "string"
)
),
nextToken = "string"
)