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, SageMakerRunConfiguration, 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.



6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 6011

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

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

#redshift_run_configurationTypes::RedshiftRunConfigurationOutput

The configuration of the Amazon Redshift data source.



6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 6011

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

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

#sage_maker_run_configurationTypes::SageMakerRunConfigurationOutput

The Amazon SageMaker run configuration.



6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 6011

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

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6011
6012
6013
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 6011

def unknown
  @unknown
end