Class: Aws::Omics::Types::FormatOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-omics/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

TsvOptions, Unknown, VcfOptions

Defined Under Namespace

Classes: TsvOptions, Unknown, VcfOptions

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#tsv_optionsTypes::TsvOptions

Options for a TSV file.

Returns:



1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
# File 'gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb', line 1665

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1665
1666
1667
# File 'gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb', line 1665

def unknown
  @unknown
end

#vcf_optionsTypes::VcfOptions

Options for a VCF file.

Returns:



1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
# File 'gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb', line 1665

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