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.



2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 2966

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.



2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 2966

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



2966
2967
2968
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 2966

def unknown
  @unknown
end