Class: Aws::Omics::Types::ReferenceItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::Omics::Types::ReferenceItem
- 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
Defined Under Namespace
Classes: ReferenceArn, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reference_arn ⇒ String
The reference’s ARN.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#reference_arn ⇒ String
The reference’s ARN.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
5361 5362 5363 |
# File 'lib/aws-sdk-omics/types.rb', line 5361 def unknown @unknown end |