Skip to content

List Application Versions

kinesisanalyticsv2_list_application_versions R Documentation

Lists all the versions for the specified application, including versions that were rolled back

Description

Lists all the versions for the specified application, including versions that were rolled back. The response also includes a summary of the configuration associated with each version.

To get the complete description of a specific application version, invoke the describe_application_version operation.

This operation is supported only for Managed Service for Apache Flink.

Usage

kinesisanalyticsv2_list_application_versions(ApplicationName, Limit,
  NextToken)

Arguments

ApplicationName

[required] The name of the application for which you want to list all versions.

Limit

The maximum number of versions to list in this invocation of the operation.

NextToken

If a previous invocation of this operation returned a pagination token, pass it into this value to retrieve the next set of results. For more information about pagination, see Using the Amazon Command Line Interface's Pagination Options.

Value

A list with the following syntax:

list(
  ApplicationVersionSummaries = list(
    list(
      ApplicationVersionId = 123,
      ApplicationStatus = "DELETING"|"STARTING"|"STOPPING"|"READY"|"RUNNING"|"UPDATING"|"AUTOSCALING"|"FORCE_STOPPING"|"ROLLING_BACK"|"MAINTENANCE"|"ROLLED_BACK"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_application_versions(
  ApplicationName = "string",
  Limit = 123,
  NextToken = "string"
)