List Application Snapshots
kinesisanalyticsv2_list_application_snapshots | R Documentation |
Lists information about the current application snapshots¶
Description¶
Lists information about the current application snapshots.
Usage¶
Arguments¶
ApplicationName
[required] The name of an existing application.
Limit
The maximum number of application snapshots to list.
NextToken
Use this parameter if you receive a
NextToken
response in a previous request that indicates that there is more output available. Set it to the value of the previous call'sNextToken
response to indicate where the output should continue from.
Value¶
A list with the following syntax:
list(
SnapshotSummaries = list(
list(
SnapshotName = "string",
SnapshotStatus = "CREATING"|"READY"|"DELETING"|"FAILED",
ApplicationVersionId = 123,
SnapshotCreationTimestamp = as.POSIXct(
"2015-01-01"
),
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"
)
),
NextToken = "string"
)