List Application Operations
| kinesisanalyticsv2_list_application_operations | R Documentation |
Lists all the operations performed for the specified application such as UpdateApplication, StartApplication etc¶
Description¶
Lists all the operations performed for the specified application such as UpdateApplication, StartApplication etc. The response also includes a summary of the operation.
To get the complete description of a specific operation, invoke the
describe_application_operation operation.
This operation is supported only for Managed Service for Apache Flink.
Usage¶
kinesisanalyticsv2_list_application_operations(ApplicationName, Limit,
NextToken, Operation, OperationStatus)
Arguments¶
ApplicationName |
[required] The name of the application. |
Limit |
The limit on the number of records to be returned in the response. |
NextToken |
A pagination token that can be used in a subsequent request. |
Operation |
The type of operation that is performed on an application. |
OperationStatus |
The status of the operation. |
Value¶
A list with the following syntax:
list(
ApplicationOperationInfoList = list(
list(
Operation = "string",
OperationId = "string",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
OperationStatus = "IN_PROGRESS"|"CANCELLED"|"SUCCESSFUL"|"FAILED"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_application_operations(
ApplicationName = "string",
Limit = 123,
NextToken = "string",
Operation = "string",
OperationStatus = "IN_PROGRESS"|"CANCELLED"|"SUCCESSFUL"|"FAILED"
)