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)


14176
14177
14178
14179
14180
14181
14182
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 14176

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

#scheduleString

The schedule of the lineage sync.

Returns:

  • (String)


14176
14177
14178
14179
14180
14181
14182
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 14176

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

#timezoneString

The timezone of the lineage sync schedule.

Returns:

  • (String)


14176
14177
14178
14179
14180
14181
14182
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 14176

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