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¶
filterA filter applied on the
ListEnabledBaselineoperation. Allowed filters arebaselineIdentifiersandtargetIdentifiers. The filter can be applied for either, or both.maxResultsThe maximum number of results to be shown.
nextTokenA 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"
)