KinesisAnalyticsV2.Client.
list_application_versions
(**kwargs)¶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 DescribeApplicationVersion operation.
Note
This operation is supported only for Amazon Kinesis Data Analytics for Apache Flink.
See also: AWS API Documentation
Request Syntax
response = client.list_application_versions(
ApplicationName='string',
Limit=123,
NextToken='string'
)
[REQUIRED]
The name of the application for which you want to list all versions.
dict
Response Syntax
{
'ApplicationVersionSummaries': [
{
'ApplicationVersionId': 123,
'ApplicationStatus': 'DELETING'|'STARTING'|'STOPPING'|'READY'|'RUNNING'|'UPDATING'|'AUTOSCALING'|'FORCE_STOPPING'|'ROLLING_BACK'|'MAINTENANCE'|'ROLLED_BACK'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
ApplicationVersionSummaries (list) --
A list of the application versions and the associated configuration summaries. The list includes application versions that were rolled back.
To get the complete description of a specific application version, invoke the DescribeApplicationVersion operation.
(dict) --
The summary of the application version.
ApplicationVersionId (integer) --
The ID of the application version. Kinesis Data Analytics updates the ApplicationVersionId
each time you update the application.
ApplicationStatus (string) --
The status of the application.
NextToken (string) --
The pagination token for the next set of results, or null
if there are no additional results. To retrieve the next set of items, pass this token into a subsequent invocation of this operation. For more information about pagination, see Using the Amazon Command Line Interface's Pagination Options.
Exceptions
KinesisAnalyticsV2.Client.exceptions.InvalidArgumentException
KinesisAnalyticsV2.Client.exceptions.ResourceNotFoundException
KinesisAnalyticsV2.Client.exceptions.UnsupportedOperationException