Class: Aws::SSM::Types::AttachmentContent

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

Overview

A structure that includes attributes that describe a document attachment.

Instance Attribute Summary collapse

Instance Attribute Details

#hashString

The cryptographic hash value of the document content.

Returns:

  • (String)


789
790
791
792
793
794
795
796
# File 'lib/aws-sdk-ssm/types.rb', line 789

class AttachmentContent < Struct.new(
  :name,
  :size,
  :hash,
  :hash_type,
  :url)
  include Aws::Structure
end

#hash_typeString

The hash algorithm used to calculate the hash value.

Returns:

  • (String)


789
790
791
792
793
794
795
796
# File 'lib/aws-sdk-ssm/types.rb', line 789

class AttachmentContent < Struct.new(
  :name,
  :size,
  :hash,
  :hash_type,
  :url)
  include Aws::Structure
end

#nameString

The name of an attachment.

Returns:

  • (String)


789
790
791
792
793
794
795
796
# File 'lib/aws-sdk-ssm/types.rb', line 789

class AttachmentContent < Struct.new(
  :name,
  :size,
  :hash,
  :hash_type,
  :url)
  include Aws::Structure
end

#sizeInteger

The size of an attachment in bytes.

Returns:

  • (Integer)


789
790
791
792
793
794
795
796
# File 'lib/aws-sdk-ssm/types.rb', line 789

class AttachmentContent < Struct.new(
  :name,
  :size,
  :hash,
  :hash_type,
  :url)
  include Aws::Structure
end

#urlString

The URL location of the attachment content.

Returns:

  • (String)


789
790
791
792
793
794
795
796
# File 'lib/aws-sdk-ssm/types.rb', line 789

class AttachmentContent < Struct.new(
  :name,
  :size,
  :hash,
  :hash_type,
  :url)
  include Aws::Structure
end