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, maxResults, nextToken)
Arguments¶
filter |
An input filter for the |
maxResults |
The maximum number of results to be shown. |
nextToken |
A pagination token. |
Value¶
A list with the following syntax:
list(
controlOperations = list(
list(
controlIdentifier = "string",
enabledControlIdentifier = "string",
endTime = as.POSIXct(
"2015-01-01"
),
operationIdentifier = "string",
operationType = "ENABLE_CONTROL"|"DISABLE_CONTROL"|"UPDATE_ENABLED_CONTROL"|"RESET_ENABLED_CONTROL",
startTime = as.POSIXct(
"2015-01-01"
),
status = "SUCCEEDED"|"FAILED"|"IN_PROGRESS",
statusMessage = "string",
targetIdentifier = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_control_operations(
filter = list(
controlIdentifiers = list(
"string"
),
controlOperationTypes = list(
"ENABLE_CONTROL"|"DISABLE_CONTROL"|"UPDATE_ENABLED_CONTROL"|"RESET_ENABLED_CONTROL"
),
enabledControlIdentifiers = list(
"string"
),
statuses = list(
"SUCCEEDED"|"FAILED"|"IN_PROGRESS"
),
targetIdentifiers = list(
"string"
)
),
maxResults = 123,
nextToken = "string"
)