Class: Aws::Glacier::Types::UploadArchiveInput

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

Overview

Note:

When making an API call, you may pass UploadArchiveInput data as a hash:

{
  vault_name: "string", # required
  account_id: "string", # required
  archive_description: "string",
  checksum: "string",
  body: "data",
}

Provides options to add an archive to a vault.

Instance Attribute Summary collapse

Instance Attribute Details

#account_idString

The ‘AccountId` value is the AWS account ID of the account that owns the vault. You can either specify an AWS account ID or optionally a single ’‘-`’ (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you use an account ID, do not include any hyphens (‘-’) in the ID.

Returns:

  • (String)


2621
2622
2623
2624
2625
2626
2627
2628
# File 'lib/aws-sdk-glacier/types.rb', line 2621

class UploadArchiveInput < Struct.new(
  :vault_name,
  :account_id,
  :archive_description,
  :checksum,
  :body)
  include Aws::Structure
end

#archive_descriptionString

The optional description of the archive you are uploading.

Returns:

  • (String)


2621
2622
2623
2624
2625
2626
2627
2628
# File 'lib/aws-sdk-glacier/types.rb', line 2621

class UploadArchiveInput < Struct.new(
  :vault_name,
  :account_id,
  :archive_description,
  :checksum,
  :body)
  include Aws::Structure
end

#bodyIO

The data to upload.

Returns:

  • (IO)


2621
2622
2623
2624
2625
2626
2627
2628
# File 'lib/aws-sdk-glacier/types.rb', line 2621

class UploadArchiveInput < Struct.new(
  :vault_name,
  :account_id,
  :archive_description,
  :checksum,
  :body)
  include Aws::Structure
end

#checksumString

The SHA256 tree hash of the data being uploaded.

Returns:

  • (String)


2621
2622
2623
2624
2625
2626
2627
2628
# File 'lib/aws-sdk-glacier/types.rb', line 2621

class UploadArchiveInput < Struct.new(
  :vault_name,
  :account_id,
  :archive_description,
  :checksum,
  :body)
  include Aws::Structure
end

#vault_nameString

The name of the vault.

Returns:

  • (String)


2621
2622
2623
2624
2625
2626
2627
2628
# File 'lib/aws-sdk-glacier/types.rb', line 2621

class UploadArchiveInput < Struct.new(
  :vault_name,
  :account_id,
  :archive_description,
  :checksum,
  :body)
  include Aws::Structure
end