Class: AWSCDK::AppFlow::CfnFlow::IncrementalPullConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::IncrementalPullConfigProperty
- Defined in:
- app_flow/cfn_flow.rb
Overview
Specifies the configuration used when importing incremental records from the source.
Instance Attribute Summary collapse
-
#datetime_type_field_name ⇒ String?
readonly
A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(datetime_type_field_name: nil) ⇒ IncrementalPullConfigProperty
constructor
A new instance of IncrementalPullConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(datetime_type_field_name: nil) ⇒ IncrementalPullConfigProperty
Returns a new instance of IncrementalPullConfigProperty.
1559 1560 1561 1562 |
# File 'app_flow/cfn_flow.rb', line 1559 def initialize(datetime_type_field_name: nil) @datetime_type_field_name = datetime_type_field_name Jsii::Type.check_type(@datetime_type_field_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "datetimeTypeFieldName") unless @datetime_type_field_name.nil? end |
Instance Attribute Details
#datetime_type_field_name ⇒ String? (readonly)
A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.
1568 1569 1570 |
# File 'app_flow/cfn_flow.rb', line 1568 def datetime_type_field_name @datetime_type_field_name end |
Class Method Details
.jsii_properties ⇒ Object
1570 1571 1572 1573 1574 |
# File 'app_flow/cfn_flow.rb', line 1570 def self.jsii_properties { :datetime_type_field_name => "datetimeTypeFieldName", } end |
Instance Method Details
#to_jsii ⇒ Object
1576 1577 1578 1579 1580 1581 1582 |
# File 'app_flow/cfn_flow.rb', line 1576 def to_jsii result = {} result.merge!({ "datetimeTypeFieldName" => @datetime_type_field_name, }) result.compact end |