libZSservicesZSamazonka-glacierZSamazonka-glacier
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Glacier.UploadArchive

Description

This operation adds an archive to a vault. This is a synchronous operation, and for a successful upload, your data is durably persisted. Amazon S3 Glacier returns the archive ID in the x-amz-archive-id header of the response.

You must use the archive ID to access your data in Amazon S3 Glacier. After you upload an archive, you should save the archive ID returned so that you can retrieve or delete the archive later. Besides saving the archive ID, you can also index it and give it a friendly name to allow for better searching. You can also use the optional archive description field to specify how the archive is referred to in an external index of archives, such as you might create in Amazon DynamoDB. You can also get the vault inventory to obtain a list of archive IDs in a vault. For more information, see InitiateJob.

You must provide a SHA256 tree hash of the data you are uploading. For information about computing a SHA256 tree hash, see Computing Checksums.

You can optionally specify an archive description of up to 1,024 printable ASCII characters. You can get the archive description when you either retrieve the archive or get the vault inventory. For more information, see InitiateJob. Amazon Glacier does not interpret the description in any way. An archive description does not need to be unique. You cannot use the description to retrieve or sort the archive list.

Archives are immutable. After you upload an archive, you cannot edit the archive or its description.

An AWS account has full permission to perform all operations (actions). However, AWS Identity and Access Management (IAM) users don't have any permissions by default. You must grant them explicit permission to perform specific actions. For more information, see Access Control Using AWS Identity and Access Management (IAM).

For conceptual information and underlying REST API, see Uploading an Archive in Amazon Glacier and Upload Archive in the Amazon Glacier Developer Guide.

Synopsis

Creating a Request

data UploadArchive Source #

Provides options to add an archive to a vault.

See: newUploadArchive smart constructor.

Constructors

UploadArchive' 

Fields

  • checksum :: Maybe Text

    The SHA256 tree hash of the data being uploaded.

  • archiveDescription :: Maybe Text

    The optional description of the archive you are uploading.

  • vaultName :: Text

    The name of the vault.

  • accountId :: Text

    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 S3 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.

  • body :: HashedBody

    The data to upload.

Instances

Instances details
Show UploadArchive Source # 
Instance details

Defined in Amazonka.Glacier.UploadArchive

Generic UploadArchive Source # 
Instance details

Defined in Amazonka.Glacier.UploadArchive

Associated Types

type Rep UploadArchive :: Type -> Type #

AWSRequest UploadArchive Source # 
Instance details

Defined in Amazonka.Glacier.UploadArchive

Associated Types

type AWSResponse UploadArchive #

ToBody UploadArchive Source # 
Instance details

Defined in Amazonka.Glacier.UploadArchive

ToHeaders UploadArchive Source # 
Instance details

Defined in Amazonka.Glacier.UploadArchive

ToPath UploadArchive Source # 
Instance details

Defined in Amazonka.Glacier.UploadArchive

ToQuery UploadArchive Source # 
Instance details

Defined in Amazonka.Glacier.UploadArchive

type Rep UploadArchive Source # 
Instance details

Defined in Amazonka.Glacier.UploadArchive

type Rep UploadArchive = D1 ('MetaData "UploadArchive" "Amazonka.Glacier.UploadArchive" "libZSservicesZSamazonka-glacierZSamazonka-glacier" 'False) (C1 ('MetaCons "UploadArchive'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "checksum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "archiveDescription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "vaultName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "accountId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "body") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 HashedBody)))))
type AWSResponse UploadArchive Source # 
Instance details

Defined in Amazonka.Glacier.UploadArchive

newUploadArchive Source #

Create a value of UploadArchive with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:checksum:UploadArchive', uploadArchive_checksum - The SHA256 tree hash of the data being uploaded.

$sel:archiveDescription:UploadArchive', uploadArchive_archiveDescription - The optional description of the archive you are uploading.

$sel:vaultName:UploadArchive', uploadArchive_vaultName - The name of the vault.

$sel:accountId:UploadArchive', uploadArchive_accountId - 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 S3 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.

$sel:body:UploadArchive', uploadArchive_body - The data to upload.

Request Lenses

uploadArchive_checksum :: Lens' UploadArchive (Maybe Text) Source #

The SHA256 tree hash of the data being uploaded.

uploadArchive_archiveDescription :: Lens' UploadArchive (Maybe Text) Source #

The optional description of the archive you are uploading.

uploadArchive_accountId :: Lens' UploadArchive Text Source #

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 S3 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.

Destructuring the Response

data ArchiveCreationOutput Source #

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.

See: newArchiveCreationOutput smart constructor.

Constructors

ArchiveCreationOutput' 

Fields

Instances

Instances details
Eq ArchiveCreationOutput Source # 
Instance details

Defined in Amazonka.Glacier.Types.ArchiveCreationOutput

Read ArchiveCreationOutput Source # 
Instance details

Defined in Amazonka.Glacier.Types.ArchiveCreationOutput

Show ArchiveCreationOutput Source # 
Instance details

Defined in Amazonka.Glacier.Types.ArchiveCreationOutput

Generic ArchiveCreationOutput Source # 
Instance details

Defined in Amazonka.Glacier.Types.ArchiveCreationOutput

Associated Types

type Rep ArchiveCreationOutput :: Type -> Type #

NFData ArchiveCreationOutput Source # 
Instance details

Defined in Amazonka.Glacier.Types.ArchiveCreationOutput

Methods

rnf :: ArchiveCreationOutput -> () #

Hashable ArchiveCreationOutput Source # 
Instance details

Defined in Amazonka.Glacier.Types.ArchiveCreationOutput

FromJSON ArchiveCreationOutput Source # 
Instance details

Defined in Amazonka.Glacier.Types.ArchiveCreationOutput

type Rep ArchiveCreationOutput Source # 
Instance details

Defined in Amazonka.Glacier.Types.ArchiveCreationOutput

type Rep ArchiveCreationOutput = D1 ('MetaData "ArchiveCreationOutput" "Amazonka.Glacier.Types.ArchiveCreationOutput" "libZSservicesZSamazonka-glacierZSamazonka-glacier" 'False) (C1 ('MetaCons "ArchiveCreationOutput'" 'PrefixI 'True) (S1 ('MetaSel ('Just "archiveId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "checksum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "location") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newArchiveCreationOutput :: ArchiveCreationOutput Source #

Create a value of ArchiveCreationOutput with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:archiveId:ArchiveCreationOutput', archiveCreationOutput_archiveId - The ID of the archive. This value is also included as part of the location.

$sel:checksum:ArchiveCreationOutput', archiveCreationOutput_checksum - The checksum of the archive computed by Amazon S3 Glacier.

$sel:location:ArchiveCreationOutput', archiveCreationOutput_location - The relative URI path of the newly added archive resource.

Response Lenses

archiveCreationOutput_archiveId :: Lens' ArchiveCreationOutput (Maybe Text) Source #

The ID of the archive. This value is also included as part of the location.

archiveCreationOutput_checksum :: Lens' ArchiveCreationOutput (Maybe Text) Source #

The checksum of the archive computed by Amazon S3 Glacier.

archiveCreationOutput_location :: Lens' ArchiveCreationOutput (Maybe Text) Source #

The relative URI path of the newly added archive resource.