Skip to content

List Managed Insight Rules

cloudwatch_list_managed_insight_rules R Documentation

Returns a list that contains the number of managed Contributor Insights rules in your account

Description

Returns a list that contains the number of managed Contributor Insights rules in your account.

Usage

cloudwatch_list_managed_insight_rules(ResourceARN, NextToken,
  MaxResults)

Arguments

ResourceARN

[required] The ARN of an Amazon Web Services resource that has managed Contributor Insights rules.

NextToken

Include this value to get the next set of rules if the value was returned by the previous operation.

MaxResults

The maximum number of results to return in one operation. If you omit this parameter, the default number is used. The default number is 100.

Value

A list with the following syntax:

list(
  ManagedRules = list(
    list(
      TemplateName = "string",
      ResourceARN = "string",
      RuleState = list(
        RuleName = "string",
        State = "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_managed_insight_rules(
  ResourceARN = "string",
  NextToken = "string",
  MaxResults = 123
)