Skip to content

List Enabled Baselines

controltower_list_enabled_baselines R Documentation

Returns a list of summaries describing EnabledBaseline resources

Description

Returns a list of summaries describing EnabledBaseline resources. You can filter the list by the corresponding Baseline or Target of the EnabledBaseline resources. For usage examples, see the Amazon Web Services Control Tower User Guide .

Usage

controltower_list_enabled_baselines(filter, maxResults, nextToken)

Arguments

filter

A filter applied on the ListEnabledBaseline operation. Allowed filters are baselineIdentifiers and targetIdentifiers. The filter can be applied for either, or both.

maxResults

The maximum number of results to be shown.

nextToken

A pagination token.

Value

A list with the following syntax:

list(
  enabledBaselines = list(
    list(
      arn = "string",
      baselineIdentifier = "string",
      baselineVersion = "string",
      statusSummary = list(
        lastOperationIdentifier = "string",
        status = "SUCCEEDED"|"FAILED"|"UNDER_CHANGE"
      ),
      targetIdentifier = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_enabled_baselines(
  filter = list(
    baselineIdentifiers = list(
      "string"
    ),
    targetIdentifiers = list(
      "string"
    )
  ),
  maxResults = 123,
  nextToken = "string"
)