List Analyzers
accessanalyzer_list_analyzers | R Documentation |
Retrieves a list of analyzers¶
Description¶
Retrieves a list of analyzers.
Usage¶
accessanalyzer_list_analyzers(nextToken, maxResults, type)
Arguments¶
nextToken |
A token used for pagination of results returned. |
maxResults |
The maximum number of results to return in the response. |
type |
The type of analyzer. |
Value¶
A list with the following syntax:
list(
analyzers = list(
list(
arn = "string",
name = "string",
type = "ACCOUNT"|"ORGANIZATION"|"ACCOUNT_UNUSED_ACCESS"|"ORGANIZATION_UNUSED_ACCESS",
createdAt = as.POSIXct(
"2015-01-01"
),
lastResourceAnalyzed = "string",
lastResourceAnalyzedAt = as.POSIXct(
"2015-01-01"
),
tags = list(
"string"
),
status = "ACTIVE"|"CREATING"|"DISABLED"|"FAILED",
statusReason = list(
code = "AWS_SERVICE_ACCESS_DISABLED"|"DELEGATED_ADMINISTRATOR_DEREGISTERED"|"ORGANIZATION_DELETED"|"SERVICE_LINKED_ROLE_CREATION_FAILED"
),
configuration = list(
unusedAccess = list(
unusedAccessAge = 123,
analysisRule = list(
exclusions = list(
list(
accountIds = list(
"string"
),
resourceTags = list(
list(
"string"
)
)
)
)
)
)
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_analyzers(
nextToken = "string",
maxResults = 123,
type = "ACCOUNT"|"ORGANIZATION"|"ACCOUNT_UNUSED_ACCESS"|"ORGANIZATION_UNUSED_ACCESS"
)