Class: AWSCDK::EntityResolution::CfnIdMappingWorkflow::IdMappingIncrementalRunConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::EntityResolution::CfnIdMappingWorkflow::IdMappingIncrementalRunConfigProperty
- Defined in:
- entity_resolution/cfn_id_mapping_workflow.rb
Overview
Instance Attribute Summary collapse
- #incremental_run_type ⇒ String readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(incremental_run_type:) ⇒ IdMappingIncrementalRunConfigProperty
constructor
A new instance of IdMappingIncrementalRunConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(incremental_run_type:) ⇒ IdMappingIncrementalRunConfigProperty
Returns a new instance of IdMappingIncrementalRunConfigProperty.
639 640 641 642 |
# File 'entity_resolution/cfn_id_mapping_workflow.rb', line 639 def initialize(incremental_run_type:) @incremental_run_type = incremental_run_type Jsii::Type.check_type(@incremental_run_type, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "incrementalRunType") end |
Instance Attribute Details
#incremental_run_type ⇒ String (readonly)
646 647 648 |
# File 'entity_resolution/cfn_id_mapping_workflow.rb', line 646 def incremental_run_type @incremental_run_type end |
Class Method Details
.jsii_properties ⇒ Object
648 649 650 651 652 |
# File 'entity_resolution/cfn_id_mapping_workflow.rb', line 648 def self.jsii_properties { :incremental_run_type => "incrementalRunType", } end |
Instance Method Details
#to_jsii ⇒ Object
654 655 656 657 658 659 660 |
# File 'entity_resolution/cfn_id_mapping_workflow.rb', line 654 def to_jsii result = {} result.merge!({ "incrementalRunType" => @incremental_run_type, }) result.compact end |