Skip to content

Describe Configuration Recorder Status

configservice_describe_configuration_recorder_status R Documentation

Returns the current status of the specified configuration recorder as well as the status of the last recording event for the recorder

Description

Returns the current status of the specified configuration recorder as well as the status of the last recording event for the recorder. If a configuration recorder is not specified, this action returns the status of all configuration recorders associated with the account.

\You can specify only one configuration recorder for each Amazon Web Services Region for each account. For a detailed status of recording events over time, add your Config events to Amazon CloudWatch metrics and use CloudWatch metrics.

Usage

configservice_describe_configuration_recorder_status(
  ConfigurationRecorderNames)

Arguments

ConfigurationRecorderNames

The name(s) of the configuration recorder. If the name is not specified, the action returns the current status of all the configuration recorders associated with the account.

Value

A list with the following syntax:

list(
  ConfigurationRecordersStatus = list(
    list(
      name = "string",
      lastStartTime = as.POSIXct(
        "2015-01-01"
      ),
      lastStopTime = as.POSIXct(
        "2015-01-01"
      ),
      recording = TRUE|FALSE,
      lastStatus = "Pending"|"Success"|"Failure",
      lastErrorCode = "string",
      lastErrorMessage = "string",
      lastStatusChangeTime = as.POSIXct(
        "2015-01-01"
      )
    )
  )
)

Request syntax

svc$describe_configuration_recorder_status(
  ConfigurationRecorderNames = list(
    "string"
  )
)