Skip to content

List Configuration Recorders

configservice_list_configuration_recorders R Documentation

Returns a list of configuration recorders depending on the filters you specify

Description

Returns a list of configuration recorders depending on the filters you specify.

Usage

configservice_list_configuration_recorders(Filters, MaxResults,
  NextToken)

Arguments

Filters

Filters the results based on a list of ConfigurationRecorderFilter objects that you specify.

MaxResults

The maximum number of results to include in the response.

NextToken

The NextToken string returned on a previous page that you use to get the next page of results in a paginated response.

Value

A list with the following syntax:

list(
  ConfigurationRecorderSummaries = list(
    list(
      arn = "string",
      name = "string",
      servicePrincipal = "string",
      recordingScope = "INTERNAL"|"PAID"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_configuration_recorders(
  Filters = list(
    list(
      filterName = "recordingScope",
      filterValue = list(
        "string"
      )
    )
  ),
  MaxResults = 123,
  NextToken = "string"
)