Class: AWSCDK::AppFlow::CfnFlow::IncrementalPullConfigProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
app_flow/cfn_flow.rb

Overview

Specifies the configuration used when importing incremental records from the source.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(datetime_type_field_name: nil) ⇒ IncrementalPullConfigProperty

Returns a new instance of IncrementalPullConfigProperty.

Parameters:

  • datetime_type_field_name (String, nil) (defaults to: nil)

    A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.



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_nameString? (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_propertiesObject



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_jsiiObject



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