aws.glacier.list_parts
Example SQL Queries
SELECT * FROMaws.glacier.list_partsWHERE"account_id" = 'VALUE'AND "vault_name" = 'VALUE'AND "upload_id" = 'VALUE';Description
This operation lists the parts of an archive that have been uploaded in a specific multipart upload. You can make this request at any time during an in-progress multipart upload before you complete the upload (see CompleteMultipartUpload. List Parts returns an error for completed uploads. The list returned in the List Parts response is sorted by part range.
The List Parts operation supports pagination. By default, this operation returns up to 50 uploaded parts in the response. You should always check the response for a marker at which to continue the list; if there are no more items the marker is null. To return a list of parts that begins at a specific part, set the marker request parameter to the value you obtained from a previous List Parts request. You can also limit the number of parts returned in the response by specifying the limit parameter in the request.
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 the underlying REST API, see Working with Archives in Amazon S3 Glacier and List Parts in the Amazon Glacier Developer Guide.
Table Definition
| Column Name | Column Data Type |
|---|---|
| account_id Required Input Column 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. | VARCHAR |
| upload_id Required Input Column The upload ID of the multipart upload. | VARCHAR |
| vault_name Required Input Column The name of the vault. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| archive_description The description of the archive that was specified in the Initiate Multipart Upload request. | VARCHAR |
| creation_date The UTC time at which the multipart upload was initiated. | VARCHAR |
| multipart_upload_id The ID of the upload to which the parts are associated. | VARCHAR |
| part_size_in_bytes The part size in bytes. This is the same value that you specified in the Initiate Multipart Upload request. | BIGINT |
| parts A list of the part sizes of the multipart upload. Each object in the array contains a RangeBytes and sha256-tree-hash name/value pair. | STRUCT( |
Show child fields
| |
| vault_arn The Amazon Resource Name (ARN) of the vault to which the multipart upload was initiated. | VARCHAR |