Skip to main content

application_operations

Creates, updates, deletes, gets or lists an application_operations resource.

Overview

Nameapplication_operations
TypeResource
Idaws.kinesisanalyticsv2.application_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
application_version_change_detailsobjectContains information about the version changes that the operation applied to the application.
end_timestring (date-time)The timestamp that indicates when the operation finished.
operationstringThe type of operation that is performed on an application.
operation_failure_detailsobjectProvides a description of the operation failure.
operation_statusstringThe status of the operation. (IN_PROGRESS, CANCELLED, SUCCESSFUL, FAILED)
start_timestring (date-time)The timestamp that indicates when the operation was created.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_application_operationselectregionProvides 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_operationsselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;