Class: Aws::Omics::Types::StoreOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::Omics::Types::StoreOptions
- Defined in:
- gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb
Overview
Note:
StoreOptions is a union - when making an API calls you must set exactly one of the members.
Note:
StoreOptions is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of StoreOptions corresponding to the set member.
Settings for a store.
Direct Known Subclasses
Defined Under Namespace
Classes: TsvStoreOptions, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tsv_store_options ⇒ Types::TsvStoreOptions
File settings for a TSV store.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#tsv_store_options ⇒ Types::TsvStoreOptions
File settings for a TSV store.
6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 |
# File 'gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb', line 6061 class StoreOptions < Struct.new( :tsv_store_options, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class TsvStoreOptions < StoreOptions; end class Unknown < StoreOptions; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6061 6062 6063 |
# File 'gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb', line 6061 def unknown @unknown end |