Class: Aws::Glue::Types::IntegrationConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb

Overview

Properties associated with the integration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#refresh_intervalString

Specifies the frequency at which CDC (Change Data Capture) pulls or incremental loads should occur. This parameter provides flexibility to align the refresh rate with your specific data update patterns, system load considerations, and performance optimization goals. Time increment can be set from 15 minutes to 8640 minutes (six days). Currently supports creation of RefreshInterval only.

Returns:

  • (String)


16292
16293
16294
16295
16296
16297
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16292

class IntegrationConfig < Struct.new(
  :refresh_interval,
  :source_properties)
  SENSITIVE = []
  include Aws::Structure
end

#source_propertiesHash<String,String>

A collection of key-value pairs that specify additional properties for the integration source. These properties provide configuration options that can be used to customize the behavior of the ODB source during data integration operations.

Returns:

  • (Hash<String,String>)


16292
16293
16294
16295
16296
16297
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16292

class IntegrationConfig < Struct.new(
  :refresh_interval,
  :source_properties)
  SENSITIVE = []
  include Aws::Structure
end