Class: Aws::Glacier::Types::ArchiveCreationOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glacier::Types::ArchiveCreationOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glacier/types.rb
Overview
Contains the Amazon S3 Glacier response to your request.
For information about the underlying REST API, see [Upload Archive]. For conceptual information, see [Working with Archives in Amazon S3 Glacier].
[1]: docs.aws.amazon.com/amazonglacier/latest/dev/api-archive-post.html [2]: docs.aws.amazon.com/amazonglacier/latest/dev/working-with-archives.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#archive_id ⇒ String
The ID of the archive.
-
#checksum ⇒ String
The checksum of the archive computed by Amazon S3 Glacier.
-
#location ⇒ String
The relative URI path of the newly added archive resource.
Instance Attribute Details
#archive_id ⇒ String
The ID of the archive. This value is also included as part of the location.
125 126 127 128 129 130 131 |
# File 'lib/aws-sdk-glacier/types.rb', line 125 class ArchiveCreationOutput < Struct.new( :location, :checksum, :archive_id) SENSITIVE = [] include Aws::Structure end |
#checksum ⇒ String
The checksum of the archive computed by Amazon S3 Glacier.
125 126 127 128 129 130 131 |
# File 'lib/aws-sdk-glacier/types.rb', line 125 class ArchiveCreationOutput < Struct.new( :location, :checksum, :archive_id) SENSITIVE = [] include Aws::Structure end |
#location ⇒ String
The relative URI path of the newly added archive resource.
125 126 127 128 129 130 131 |
# File 'lib/aws-sdk-glacier/types.rb', line 125 class ArchiveCreationOutput < Struct.new( :location, :checksum, :archive_id) SENSITIVE = [] include Aws::Structure end |