Class: Aws::Omics::Types::FormatOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::Omics::Types::FormatOptions
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-omics/types.rb
Overview
Note:
FormatOptions is a union - when making an API calls you must set exactly one of the members.
Note:
FormatOptions is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FormatOptions corresponding to the set member.
Formatting options for a file.
Direct Known Subclasses
Defined Under Namespace
Classes: TsvOptions, Unknown, VcfOptions
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tsv_options ⇒ Types::TsvOptions
Options for a TSV file.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#vcf_options ⇒ Types::VcfOptions
Options for a VCF file.
Instance Attribute Details
#tsv_options ⇒ Types::TsvOptions
Options for a TSV file.
1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 |
# File 'lib/aws-sdk-omics/types.rb', line 1831 class FormatOptions < Struct.new( :tsv_options, :vcf_options, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class TsvOptions < FormatOptions; end class VcfOptions < FormatOptions; end class Unknown < FormatOptions; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1831 1832 1833 |
# File 'lib/aws-sdk-omics/types.rb', line 1831 def unknown @unknown end |
#vcf_options ⇒ Types::VcfOptions
Options for a VCF file.
1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 |
# File 'lib/aws-sdk-omics/types.rb', line 1831 class FormatOptions < Struct.new( :tsv_options, :vcf_options, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class TsvOptions < FormatOptions; end class VcfOptions < FormatOptions; end class Unknown < FormatOptions; end end |