Class: Aws::DataZone::Types::DataSourceConfigurationInput

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

Overview

Note:

DataSourceConfigurationInput is a union - when making an API calls you must set exactly one of the members.

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::GlueRunConfigurationInput

The configuration of the Amazon Web Services Glue data source.



5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 5175

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

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

#redshift_run_configurationTypes::RedshiftRunConfigurationInput

The configuration of the Amazon Redshift data source.



5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 5175

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

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

#sage_maker_run_configurationTypes::SageMakerRunConfigurationInput

The Amazon SageMaker run configuration.



5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 5175

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

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5175
5176
5177
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 5175

def unknown
  @unknown
end