Learn R Programming

paws.management (version 0.1.12)

configservice_get_compliance_summary_by_config_rule: Returns the number of AWS Config rules that are compliant and noncompliant, up to a maximum of 25 for each

Description

Returns the number of AWS Config rules that are compliant and noncompliant, up to a maximum of 25 for each.

Usage

configservice_get_compliance_summary_by_config_rule()

Arguments

Value

A list with the following syntax:

list(
  ComplianceSummary = list(
    CompliantResourceCount = list(
      CappedCount = 123,
      CapExceeded = TRUE|FALSE
    ),
    NonCompliantResourceCount = list(
      CappedCount = 123,
      CapExceeded = TRUE|FALSE
    ),
    ComplianceSummaryTimestamp = as.POSIXct(
      "2015-01-01"
    )
  )
)