Class: Aws::OpenSearchService::Types::DataSourceType
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::DataSourceType
- Defined in:
- gems/aws-sdk-opensearchservice/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.
2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2056 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
2056 2057 2058 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2056 def unknown @unknown end |