List Automation Rules
securityhub_list_automation_rules | R Documentation |
A list of automation rules and their metadata for the calling account¶
Description¶
A list of automation rules and their metadata for the calling account.
Usage¶
securityhub_list_automation_rules(NextToken, MaxResults)
Arguments¶
NextToken |
A token to specify where to start paginating the response. This
is the |
MaxResults |
The maximum number of rules to return in the response. This currently ranges from 1 to 100. |
Value¶
A list with the following syntax:
list(
AutomationRulesMetadata = list(
list(
RuleArn = "string",
RuleStatus = "ENABLED"|"DISABLED",
RuleOrder = 123,
RuleName = "string",
Description = "string",
IsTerminal = TRUE|FALSE,
CreatedAt = as.POSIXct(
"2015-01-01"
),
UpdatedAt = as.POSIXct(
"2015-01-01"
),
CreatedBy = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_automation_rules(
NextToken = "string",
MaxResults = 123
)