Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idaws.apprunner.operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringThe token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request. (pattern: <code>.*</code>)
operation_summary_listarrayA list of operation summary information records. In a paginated request, the request returns up to MaxResults records for each call.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_operationsselectregionReturn a list of operations that occurred on an App Runner service. The resulting list of OperationSummary objects is sorted in reverse chronological order. The first object on the list represents the last started operation.

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

Return a list of operations that occurred on an App Runner service. The resulting list of OperationSummary objects is sorted in reverse chronological order. The first object on the list represents the last started operation.

SELECT
next_token,
operation_summary_list
FROM aws.apprunner.operations
WHERE region = '{{ region }}' -- required
;