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¶
Arguments¶
filter
A filter applied on the
ListEnabledBaseline
operation. Allowed filters arebaselineIdentifiers
andtargetIdentifiers
. 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"
)