Class: Aws::DataZone::Types::LineageSyncInput

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

Overview

Contains the settings for configuring lineage sync on a Snowflake connection, including the schedule, timezone, and enabled state.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

Specifies whether lineage sync is enabled.

Returns:

  • (Boolean)


13941
13942
13943
13944
13945
13946
13947
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13941

class LineageSyncInput < Struct.new(
  :timezone,
  :enabled,
  :schedule)
  SENSITIVE = []
  include Aws::Structure
end

#scheduleString

The schedule of the lineage sync.

Returns:

  • (String)


13941
13942
13943
13944
13945
13946
13947
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13941

class LineageSyncInput < Struct.new(
  :timezone,
  :enabled,
  :schedule)
  SENSITIVE = []
  include Aws::Structure
end

#timezoneString

The timezone of the lineage sync schedule.

Returns:

  • (String)


13941
13942
13943
13944
13945
13946
13947
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13941

class LineageSyncInput < Struct.new(
  :timezone,
  :enabled,
  :schedule)
  SENSITIVE = []
  include Aws::Structure
end