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)


4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
# File 'lib/aws-sdk-omics/types.rb', line 4962

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



4962
4963
4964
# File 'lib/aws-sdk-omics/types.rb', line 4962

def unknown
  @unknown
end