Class: AWSCDK::CustomerProfiles::CfnIntegration::IncrementalPullConfigProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
customer_profiles/cfn_integration.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.



770
771
772
773
# File 'customer_profiles/cfn_integration.rb', line 770

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.



779
780
781
# File 'customer_profiles/cfn_integration.rb', line 779

def datetime_type_field_name
  @datetime_type_field_name
end

Class Method Details

.jsii_propertiesObject



781
782
783
784
785
# File 'customer_profiles/cfn_integration.rb', line 781

def self.jsii_properties
  {
    :datetime_type_field_name => "datetimeTypeFieldName",
  }
end

Instance Method Details

#to_jsiiObject



787
788
789
790
791
792
793
# File 'customer_profiles/cfn_integration.rb', line 787

def to_jsii
  result = {}
  result.merge!({
    "datetimeTypeFieldName" => @datetime_type_field_name,
  })
  result.compact
end