Update Archive Rule
accessanalyzer_update_archive_rule | R Documentation |
Updates the criteria and values for the specified archive rule¶
Description¶
Updates the criteria and values for the specified archive rule.
Usage¶
accessanalyzer_update_archive_rule(analyzerName, ruleName, filter,
clientToken)
Arguments¶
analyzerName |
[required] The name of the analyzer to update the archive rules for. |
ruleName |
[required] The name of the rule to update. |
filter |
[required] A filter to match for the rules to update. Only rules that match the filter are updated. |
clientToken |
A client token. |
Value¶
An empty list.
Request syntax¶
svc$update_archive_rule(
analyzerName = "string",
ruleName = "string",
filter = list(
list(
eq = list(
"string"
),
neq = list(
"string"
),
contains = list(
"string"
),
exists = TRUE|FALSE
)
),
clientToken = "string"
)