List Archive Rules
accessanalyzer_list_archive_rules | R Documentation |
Retrieves a list of archive rules created for the specified analyzer¶
Description¶
Retrieves a list of archive rules created for the specified analyzer.
Usage¶
accessanalyzer_list_archive_rules(analyzerName, nextToken, maxResults)
Arguments¶
analyzerName |
[required] The name of the analyzer to retrieve rules from. |
nextToken |
A token used for pagination of results returned. |
maxResults |
The maximum number of results to return in the request. |
Value¶
A list with the following syntax:
list(
archiveRules = list(
list(
ruleName = "string",
filter = list(
list(
eq = list(
"string"
),
neq = list(
"string"
),
contains = list(
"string"
),
exists = TRUE|FALSE
)
),
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_archive_rules(
analyzerName = "string",
nextToken = "string",
maxResults = 123
)