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¶
controltower_get_enabled_control(enabledControlIdentifier)
Arguments¶
enabledControlIdentifier |
[required] The |
Value¶
A list with the following syntax:
list(
enabledControlDetails = list(
arn = "string",
controlIdentifier = "string",
targetIdentifier = "string",
statusSummary = list(
status = "SUCCEEDED"|"FAILED"|"UNDER_CHANGE",
lastOperationIdentifier = "string"
),
driftStatusSummary = list(
driftStatus = "DRIFTED"|"IN_SYNC"|"NOT_CHECKING"|"UNKNOWN",
types = list(
inheritance = list(
status = "DRIFTED"|"IN_SYNC"|"NOT_CHECKING"|"UNKNOWN"
),
resource = list(
status = "DRIFTED"|"IN_SYNC"|"NOT_CHECKING"|"UNKNOWN"
)
)
),
parentIdentifier = "string",
targetRegions = list(
list(
name = "string"
)
),
parameters = list(
list(
key = "string",
value = list()
)
)
)
)
Request syntax¶
svc$get_enabled_control(
enabledControlIdentifier = "string"
)