Describe Insight Rules
cloudwatch_describe_insight_rules | R Documentation |
Returns a list of all the Contributor Insights rules in your account¶
Description¶
Returns a list of all the Contributor Insights rules in your account.
For more information about Contributor Insights, see Using Contributor Insights to Analyze High-Cardinality Data.
Usage¶
cloudwatch_describe_insight_rules(NextToken, MaxResults)
Arguments¶
NextToken |
Include this value, if it was returned by the previous operation, to get the next set of rules. |
MaxResults |
The maximum number of results to return in one operation. If you omit this parameter, the default of 500 is used. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
InsightRules = list(
list(
Name = "string",
State = "string",
Schema = "string",
Definition = "string",
ManagedRule = TRUE|FALSE
)
)
)
Request syntax¶
svc$describe_insight_rules(
NextToken = "string",
MaxResults = 123
)