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.
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.
2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2385 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
2385 2386 2387 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 2385 def unknown @unknown end |