List Control Operations
| controltower_list_control_operations | R Documentation |
Provides a list of operations in progress or queued¶
Description¶
Provides a list of operations in progress or queued. For usage examples, see ListControlOperation examples.
Usage¶
controltower_list_control_operations(filter, nextToken, maxResults)
Arguments¶
filter |
An input filter for the |
nextToken |
A pagination token. |
maxResults |
The maximum number of results to be shown. |
Value¶
A list with the following syntax:
list(
controlOperations = list(
list(
operationType = "ENABLE_CONTROL"|"DISABLE_CONTROL"|"UPDATE_ENABLED_CONTROL"|"RESET_ENABLED_CONTROL",
startTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
),
status = "SUCCEEDED"|"FAILED"|"IN_PROGRESS",
statusMessage = "string",
operationIdentifier = "string",
controlIdentifier = "string",
targetIdentifier = "string",
enabledControlIdentifier = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_control_operations(
filter = list(
controlIdentifiers = list(
"string"
),
targetIdentifiers = list(
"string"
),
enabledControlIdentifiers = list(
"string"
),
statuses = list(
"SUCCEEDED"|"FAILED"|"IN_PROGRESS"
),
controlOperationTypes = list(
"ENABLE_CONTROL"|"DISABLE_CONTROL"|"UPDATE_ENABLED_CONTROL"|"RESET_ENABLED_CONTROL"
)
),
nextToken = "string",
maxResults = 123
)