application_operations
Creates, updates, deletes, gets or lists an application_operations resource.
Overview
| Name | application_operations |
| Type | Resource |
| Id | aws.kinesisanalyticsv2.application_operations |
Fields
The following fields are returned by SELECT queries:
- describe_application_operation
- list_application_operations
| Name | Datatype | Description |
|---|---|---|
application_version_change_details | object | Contains information about the version changes that the operation applied to the application. |
end_time | string (date-time) | The timestamp that indicates when the operation finished. |
operation | string | The type of operation that is performed on an application. |
operation_failure_details | object | Provides a description of the operation failure. |
operation_status | string | The status of the operation. (IN_PROGRESS, CANCELLED, SUCCESSFUL, FAILED) |
start_time | string (date-time) | The timestamp that indicates when the operation was created. |
| Name | Datatype | Description |
|---|---|---|
end_time | string (date-time) | The timestamp that indicates when the operation finished. |
operation | string | The type of operation that is performed on an application. |
operation_id | string | The operation ID of the request. |
operation_status | string | The status of the operation. (IN_PROGRESS, CANCELLED, SUCCESSFUL, FAILED) |
start_time | string (date-time) | The timestamp that indicates when the operation was created. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_application_operation | select | region | Provides a detailed description of a specified application operation. To see a list of all the operations of an application, invoke the ListApplicationOperations operation. This operation is supported only for Managed Service for Apache Flink. | |
list_application_operations | select | region | 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 DescribeApplicationOperation operation. This operation is supported only for Managed Service for Apache Flink. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_application_operation
- list_application_operations
Provides a detailed description of a specified application operation. To see a list of all the operations of an application, invoke the ListApplicationOperations operation. This operation is supported only for Managed Service for Apache Flink.
SELECT
application_version_change_details,
end_time,
operation,
operation_failure_details,
operation_status,
start_time
FROM aws.kinesisanalyticsv2.application_operations
WHERE region = '{{ region }}' -- required
;
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 DescribeApplicationOperation operation. This operation is supported only for Managed Service for Apache Flink.
SELECT
end_time,
operation,
operation_id,
operation_status,
start_time
FROM aws.kinesisanalyticsv2.application_operations
WHERE region = '{{ region }}' -- required
;