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, includeChildren, maxResults,
nextToken)
Arguments¶
filter |
A filter applied on the |
includeChildren |
A value that can be set to include the child enabled baselines in responses. The default value is false. |
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",
driftStatusSummary = list(
types = list(
inheritance = list(
status = "IN_SYNC"|"DRIFTED"
)
)
),
parentIdentifier = "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"
),
inheritanceDriftStatuses = list(
"IN_SYNC"|"DRIFTED"
),
parentIdentifiers = list(
"string"
),
statuses = list(
"SUCCEEDED"|"FAILED"|"UNDER_CHANGE"
),
targetIdentifiers = list(
"string"
)
),
includeChildren = TRUE|FALSE,
maxResults = 123,
nextToken = "string"
)