Class: Aws::SSM::Types::AttachmentContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::AttachmentContent
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
A structure that includes attributes that describe a document attachment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#hash ⇒ String
The cryptographic hash value of the document content.
-
#hash_type ⇒ String
The hash algorithm used to calculate the hash value.
-
#name ⇒ String
The name of an attachment.
-
#size ⇒ Integer
The size of an attachment in bytes.
-
#url ⇒ String
The URL location of the attachment content.
Instance Attribute Details
#hash ⇒ String
The cryptographic hash value of the document content.
1086 1087 1088 1089 1090 1091 1092 1093 1094 |
# File 'lib/aws-sdk-ssm/types.rb', line 1086 class AttachmentContent < Struct.new( :name, :size, :hash, :hash_type, :url) SENSITIVE = [] include Aws::Structure end |
#hash_type ⇒ String
The hash algorithm used to calculate the hash value.
1086 1087 1088 1089 1090 1091 1092 1093 1094 |
# File 'lib/aws-sdk-ssm/types.rb', line 1086 class AttachmentContent < Struct.new( :name, :size, :hash, :hash_type, :url) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of an attachment.
1086 1087 1088 1089 1090 1091 1092 1093 1094 |
# File 'lib/aws-sdk-ssm/types.rb', line 1086 class AttachmentContent < Struct.new( :name, :size, :hash, :hash_type, :url) SENSITIVE = [] include Aws::Structure end |
#size ⇒ Integer
The size of an attachment in bytes.
1086 1087 1088 1089 1090 1091 1092 1093 1094 |
# File 'lib/aws-sdk-ssm/types.rb', line 1086 class AttachmentContent < Struct.new( :name, :size, :hash, :hash_type, :url) SENSITIVE = [] include Aws::Structure end |
#url ⇒ String
The URL location of the attachment content.
1086 1087 1088 1089 1090 1091 1092 1093 1094 |
# File 'lib/aws-sdk-ssm/types.rb', line 1086 class AttachmentContent < Struct.new( :name, :size, :hash, :hash_type, :url) SENSITIVE = [] include Aws::Structure end |