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¶
kinesisanalyticsv2_list_application_snapshots(ApplicationName, Limit,
  NextToken)
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  | 
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"|"FLINK-1_20"
    )
  ),
  NextToken = "string"
)
Request syntax¶
svc$list_application_snapshots(
  ApplicationName = "string",
  Limit = 123,
  NextToken = "string"
)