List Assessment Frameworks
auditmanager_list_assessment_frameworks | R Documentation |
Returns a list of the frameworks that are available in the Audit Manager framework library¶
Description¶
Returns a list of the frameworks that are available in the Audit Manager framework library.
Usage¶
auditmanager_list_assessment_frameworks(frameworkType, nextToken,
maxResults)
Arguments¶
frameworkType |
[required] The type of framework, such as a standard framework or a custom framework. |
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(
frameworkMetadataList = list(
list(
arn = "string",
id = "string",
type = "Standard"|"Custom",
name = "string",
description = "string",
logo = "string",
complianceType = "string",
controlsCount = 123,
controlSetsCount = 123,
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_assessment_frameworks(
frameworkType = "Standard"|"Custom",
nextToken = "string",
maxResults = 123
)