Skip to content

List Sub Check Rule Results

ssmsap_list_sub_check_rule_results R Documentation

Lists the rules of a specified sub-check belonging to a configuration check operation

Description

Lists the rules of a specified sub-check belonging to a configuration check operation.

Usage

ssmsap_list_sub_check_rule_results(SubCheckResultId, MaxResults,
  NextToken)

Arguments

SubCheckResultId

[required] The ID of the sub check result.

MaxResults

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

NextToken

The token for the next page of results.

Value

A list with the following syntax:

list(
  RuleResults = list(
    list(
      Id = "string",
      Description = "string",
      Status = "PASSED"|"FAILED"|"WARNING"|"INFO"|"UNKNOWN",
      Message = "string",
      Metadata = list(
        "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_sub_check_rule_results(
  SubCheckResultId = "string",
  MaxResults = 123,
  NextToken = "string"
)