List Applications
kinesisanalyticsv2_list_applications | R Documentation |
Returns a list of Managed Service for Apache Flink applications in your account¶
Description¶
Returns a list of Managed Service for Apache Flink applications in your account. For each application, the response includes the application name, Amazon Resource Name (ARN), and status.
If you want detailed information about a specific application, use
describe_application
.
Usage¶
Arguments¶
Limit
The maximum number of applications to list.
NextToken
If a previous command 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(
ApplicationSummaries = list(
list(
ApplicationName = "string",
ApplicationARN = "string",
ApplicationStatus = "DELETING"|"STARTING"|"STOPPING"|"READY"|"RUNNING"|"UPDATING"|"AUTOSCALING"|"FORCE_STOPPING"|"ROLLING_BACK"|"MAINTENANCE"|"ROLLED_BACK",
ApplicationVersionId = 123,
RuntimeEnvironment = "SQL-1_0"|"FLINK-1_6"|"FLINK-1_8"|"ZEPPELIN-FLINK-1_0"|"FLINK-1_11"|"FLINK-1_13"|"ZEPPELIN-FLINK-2_0"|"FLINK-1_15"|"ZEPPELIN-FLINK-3_0"|"FLINK-1_18"|"FLINK-1_19",
ApplicationMode = "STREAMING"|"INTERACTIVE"
)
),
NextToken = "string"
)