Class: Aws::DataZone::Types::DataSourceConfigurationOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::DataSourceConfigurationOutput
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
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
GlueRunConfiguration, RedshiftRunConfiguration, SageMakerRunConfiguration, Unknown
Defined Under Namespace
Classes: GlueRunConfiguration, RedshiftRunConfiguration, SageMakerRunConfiguration, 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.
-
#sage_maker_run_configuration ⇒ Types::SageMakerRunConfigurationOutput
The Amazon SageMaker run configuration.
-
#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.
5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 5074 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_configuration ⇒ Types::RedshiftRunConfigurationOutput
The configuration of the Amazon Redshift data source.
5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 5074 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_configuration ⇒ Types::SageMakerRunConfigurationOutput
The Amazon SageMaker run configuration.
5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 5074 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
5074 5075 5076 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 5074 def unknown @unknown end |