Class: Aws::EntityResolution::Types::IncrementalRunConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::EntityResolution::Types::IncrementalRunConfig
- Defined in:
- gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb
Overview
Optional. An object that defines the incremental run type. This object
contains only the incrementalRunType
field, which appears as
"Automatic" in the console.
For workflows where resolutionType
is ML_MATCHING
, incremental
processing is not supported.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#incremental_run_type ⇒ String
The type of incremental run.
Instance Attribute Details
#incremental_run_type ⇒ String
The type of incremental run. The only valid value is IMMEDIATE
.
This appears as "Automatic" in the console.
For workflows where resolutionType
is ML_MATCHING
, incremental
processing is not supported.
1816 1817 1818 1819 1820 |
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 1816 class IncrementalRunConfig < Struct.new( :incremental_run_type) SENSITIVE = [] include Aws::Structure end |