Class: Aws::Omics::Types::ETag
- Inherits:
-
Struct
- Object
- Struct
- Aws::Omics::Types::ETag
- Defined in:
- gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb
Overview
The entity tag (ETag) is a hash of the object representing its semantic content.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#algorithm ⇒ String
The algorithm used to calculate the read set’s ETag(s).
-
#source1 ⇒ String
The ETag hash calculated on Source1 of the read set.
-
#source2 ⇒ String
The ETag hash calculated on Source2 of the read set.
Instance Attribute Details
#algorithm ⇒ String
The algorithm used to calculate the read set’s ETag(s).
1649 1650 1651 1652 1653 1654 1655 |
# File 'gems/aws-sdk-omics/lib/aws-sdk-omics/types.rb', line 1649 class ETag < Struct.new( :algorithm, :source1, :source2) SENSITIVE = [] include Aws::Structure end |