Class: Aws::DataZone::Types::DataSourceConfigurationOutput

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

Overview

Note:

DataSourceConfigurationOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DataSourceConfigurationOutput corresponding to the set member.

The configuration of the data source.

Defined Under Namespace

Classes: GlueRunConfiguration, RedshiftRunConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#glue_run_configurationTypes::GlueRunConfigurationOutput

The configuration of the Amazon Web Services Glue data source.



3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 3119

class DataSourceConfigurationOutput < Struct.new(
  :glue_run_configuration,
  :redshift_run_configuration,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class GlueRunConfiguration < DataSourceConfigurationOutput; end
  class RedshiftRunConfiguration < DataSourceConfigurationOutput; end
  class Unknown < DataSourceConfigurationOutput; end
end

#redshift_run_configurationTypes::RedshiftRunConfigurationOutput

The configuration of the Amazon Redshift data source.



3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 3119

class DataSourceConfigurationOutput < Struct.new(
  :glue_run_configuration,
  :redshift_run_configuration,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class GlueRunConfiguration < DataSourceConfigurationOutput; end
  class RedshiftRunConfiguration < DataSourceConfigurationOutput; end
  class Unknown < DataSourceConfigurationOutput; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3119
3120
3121
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 3119

def unknown
  @unknown
end