Skip to content

List Operations

apprunner_list_operations R Documentation

Return a list of operations that occurred on an App Runner service

Description

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.

Usage

apprunner_list_operations(ServiceArn, NextToken, MaxResults)

Arguments

ServiceArn

[required] The Amazon Resource Name (ARN) of the App Runner service that you want a list of operations for.

NextToken

A token from a previous result page. It's used for a paginated request. The request retrieves the next result page. All other parameter values must be identical to the ones specified in the initial request.

If you don't specify NextToken, the request retrieves the first result page.

MaxResults

The maximum number of results to include in each response (result page). It's used for a paginated request.

If you don't specify MaxResults, the request retrieves all available results in a single response.

Value

A list with the following syntax:

list(
  OperationSummaryList = list(
    list(
      Id = "string",
      Type = "START_DEPLOYMENT"|"CREATE_SERVICE"|"PAUSE_SERVICE"|"RESUME_SERVICE"|"DELETE_SERVICE"|"UPDATE_SERVICE",
      Status = "PENDING"|"IN_PROGRESS"|"FAILED"|"SUCCEEDED"|"ROLLBACK_IN_PROGRESS"|"ROLLBACK_FAILED"|"ROLLBACK_SUCCEEDED",
      TargetArn = "string",
      StartedAt = as.POSIXct(
        "2015-01-01"
      ),
      EndedAt = as.POSIXct(
        "2015-01-01"
      ),
      UpdatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_operations(
  ServiceArn = "string",
  NextToken = "string",
  MaxResults = 123
)