Skip to content

List Services

apprunner_list_services R Documentation

Returns a list of running App Runner services in your Amazon Web Services account

Description

Returns a list of running App Runner services in your Amazon Web Services account.

Usage

apprunner_list_services(NextToken, MaxResults)

Arguments

NextToken

A token from a previous result page. 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(
  ServiceSummaryList = list(
    list(
      ServiceName = "string",
      ServiceId = "string",
      ServiceArn = "string",
      ServiceUrl = "string",
      CreatedAt = as.POSIXct(
        "2015-01-01"
      ),
      UpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      Status = "CREATE_FAILED"|"RUNNING"|"DELETED"|"DELETE_FAILED"|"PAUSED"|"OPERATION_IN_PROGRESS"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_services(
  NextToken = "string",
  MaxResults = 123
)