Class: Aws::Mgn::Types::Checksum

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

Overview

A checksum structure used to verify data integrity.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_algorithmString

The encryption algorithm used to generate the checksum.

Returns:

  • (String)


270
271
272
273
274
275
# File 'lib/aws-sdk-mgn/types.rb', line 270

class Checksum < Struct.new(
  :encryption_algorithm,
  :hash)
  SENSITIVE = []
  include Aws::Structure
end

#hashString

The hash value of the checksum.

Returns:

  • (String)


270
271
272
273
274
275
# File 'lib/aws-sdk-mgn/types.rb', line 270

class Checksum < Struct.new(
  :encryption_algorithm,
  :hash)
  SENSITIVE = []
  include Aws::Structure
end