Returns a list of Kinesis Data Analytics 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
.
kinesisanalyticsv2_list_applications(Limit, NextToken)
A list with the following syntax:
list(
ApplicationSummaries = list(
list(
ApplicationName = "string",
ApplicationARN = "string",
ApplicationStatus = "DELETING"|"STARTING"|"STOPPING"|"READY"|"RUNNING"|"UPDATING"|"AUTOSCALING"|"FORCE_STOPPING",
ApplicationVersionId = 123,
RuntimeEnvironment = "SQL-1_0"|"FLINK-1_6"|"FLINK-1_8"|"FLINK-1_11"
)
),
NextToken = "string"
)
The maximum number of applications to list.
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 AWS Command Line Interface's Pagination Options.
svc$list_applications(
Limit = 123,
NextToken = "string"
)