Class: Aws::Omics::Types::ReferenceItem

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-omics/types.rb

Overview

Note:

ReferenceItem is a union - when making an API calls you must set exactly one of the members.

Note:

ReferenceItem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ReferenceItem corresponding to the set member.

A genome reference.

Direct Known Subclasses

ReferenceArn, Unknown

Defined Under Namespace

Classes: ReferenceArn, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#reference_arnString

The reference’s ARN.

Returns:

  • (String)


5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
# File 'lib/aws-sdk-omics/types.rb', line 5361

class ReferenceItem < Struct.new(
  :reference_arn,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ReferenceArn < ReferenceItem; end
  class Unknown < ReferenceItem; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5361
5362
5363
# File 'lib/aws-sdk-omics/types.rb', line 5361

def unknown
  @unknown
end