Get Enabled Control
controltower_get_enabled_control | R Documentation |
Retrieves details about an enabled control¶
Description¶
Retrieves details about an enabled control. For usage examples, see the Controls Reference Guide .
Usage¶
Arguments¶
enabledControlIdentifier
[required] The
controlIdentifier
of the enabled control.
Value¶
A list with the following syntax:
list(
enabledControlDetails = list(
arn = "string",
controlIdentifier = "string",
driftStatusSummary = list(
driftStatus = "DRIFTED"|"IN_SYNC"|"NOT_CHECKING"|"UNKNOWN"
),
parameters = list(
list(
key = "string",
value = list()
)
),
statusSummary = list(
lastOperationIdentifier = "string",
status = "SUCCEEDED"|"FAILED"|"UNDER_CHANGE"
),
targetIdentifier = "string",
targetRegions = list(
list(
name = "string"
)
)
)
)