Class: Aws::OpenSearchService::Types::DataSourceType
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::DataSourceType
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-opensearchservice/types.rb
Overview
Note:
DataSourceType is a union - when making an API calls you must set exactly one of the members.
Note:
DataSourceType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DataSourceType corresponding to the set member.
The type of data source.
Direct Known Subclasses
Defined Under Namespace
Classes: S3GlueDataCatalog, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_glue_data_catalog ⇒ Types::S3GlueDataCatalog
An Amazon S3 data source.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#s3_glue_data_catalog ⇒ Types::S3GlueDataCatalog
An Amazon S3 data source.
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 1712 class DataSourceType < Struct.new( :s3_glue_data_catalog, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3GlueDataCatalog < DataSourceType; end class Unknown < DataSourceType; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1712 1713 1714 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 1712 def unknown @unknown end |