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¶
Arguments¶
ApplicationName[required] The name of the application for which you want to list all versions.
LimitThe maximum number of versions to list in this invocation of the operation.
NextTokenIf 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"
)