Describe Application Operation
| kinesisanalyticsv2_describe_application_operation | R Documentation |
Provides a detailed description of a specified application operation¶
Description¶
Provides a detailed description of a specified application operation. To
see a list of all the operations of an application, invoke the
list_application_operations operation.
This operation is supported only for Managed Service for Apache Flink.
Usage¶
kinesisanalyticsv2_describe_application_operation(ApplicationName,
OperationId)
Arguments¶
ApplicationName |
[required] The name of the application. |
OperationId |
[required] The operation ID of the request. |
Value¶
A list with the following syntax:
list(
ApplicationOperationInfoDetails = list(
Operation = "string",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
OperationStatus = "IN_PROGRESS"|"CANCELLED"|"SUCCESSFUL"|"FAILED",
ApplicationVersionChangeDetails = list(
ApplicationVersionUpdatedFrom = 123,
ApplicationVersionUpdatedTo = 123
),
OperationFailureDetails = list(
RollbackOperationId = "string",
ErrorInfo = list(
ErrorString = "string"
)
)
)
)
Request syntax¶
svc$describe_application_operation(
ApplicationName = "string",
OperationId = "string"
)