You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::KinesisAnalyticsV2::Types::FlinkRunConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::FlinkRunConfiguration
- Defined in:
- (unknown)
Overview
When passing FlinkRunConfiguration as input to an Aws::Client method, you can use a vanilla Hash:
{
allow_non_restored_state: false,
}
Describes the starting parameters for a Flink-based Kinesis Data Analytics application.
Returned by:
Instance Attribute Summary collapse
-
#allow_non_restored_state ⇒ Boolean
When restoring from a snapshot, specifies whether the runtime is allowed to skip a state that cannot be mapped to the new program.
Instance Attribute Details
#allow_non_restored_state ⇒ Boolean
When restoring from a snapshot, specifies whether the runtime is allowed to skip a state that cannot be mapped to the new program. This will happen if the program is updated between snapshots to remove stateful parameters, and state data in the snapshot no longer corresponds to valid application data. For more information, see Allowing Non-Restored State in the Apache Flink documentation.
false
. If you update your application without
specifying this parameter, AllowNonRestoredState
will be set to
false
, even if it was previously set to true
.