Class: Aws::DataZone::Types::DataSourceConfigurationOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::DataSourceConfigurationOutput
- Includes:
- Structure, Structure::Union
- Defined in:
- 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.
Direct Known Subclasses
Defined Under Namespace
Classes: GlueRunConfiguration, RedshiftRunConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#glue_run_configuration ⇒ Types::GlueRunConfigurationOutput
The configuration of the Amazon Web Services Glue data source.
-
#redshift_run_configuration ⇒ Types::RedshiftRunConfigurationOutput
The configuration of the Amazon Redshift data source.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#glue_run_configuration ⇒ Types::GlueRunConfigurationOutput
The configuration of the Amazon Web Services Glue data source.
4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 |
# File 'lib/aws-sdk-datazone/types.rb', line 4317 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_configuration ⇒ Types::RedshiftRunConfigurationOutput
The configuration of the Amazon Redshift data source.
4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 |
# File 'lib/aws-sdk-datazone/types.rb', line 4317 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
4317 4318 4319 |
# File 'lib/aws-sdk-datazone/types.rb', line 4317 def unknown @unknown end |