Start Application
kinesisanalyticsv2_start_application | R Documentation |
Starts the specified Managed Service for Apache Flink application¶
Description¶
Starts the specified Managed Service for Apache Flink application. After creating an application, you must exclusively call this operation to start your application.
Usage¶
Arguments¶
ApplicationName
[required] The name of the application.
RunConfiguration
Identifies the run configuration (start parameters) of a Managed Service for Apache Flink application.
Value¶
A list with the following syntax:
Request syntax¶
svc$start_application(
ApplicationName = "string",
RunConfiguration = list(
FlinkRunConfiguration = list(
AllowNonRestoredState = TRUE|FALSE
),
SqlRunConfigurations = list(
list(
InputId = "string",
InputStartingPositionConfiguration = list(
InputStartingPosition = "NOW"|"TRIM_HORIZON"|"LAST_STOPPED_POINT"
)
)
),
ApplicationRestoreConfiguration = list(
ApplicationRestoreType = "SKIP_RESTORE_FROM_SNAPSHOT"|"RESTORE_FROM_LATEST_SNAPSHOT"|"RESTORE_FROM_CUSTOM_SNAPSHOT",
SnapshotName = "string"
)
)
)