AWS Security ChangesHomeSearch

AWS amazonglacier documentation change

Service: amazonglacier · 2025-10-01 · Documentation low

File: amazonglacier/latest/dev/uploading-an-archive-mpu-using-java.md

Summary

Updated service name references from 'S3 Glacier' to 'Glacier' and adjusted related documentation links. Removed redundant 'S3' mentions in storage class names and API references.

Security assessment

The changes are purely branding/naming convention updates (removing 'S3' from service names) and documentation link text adjustments. No security-related content was added, removed, or modified. The existing mention of 'advanced optional encryption features' remains unchanged. There is no evidence of addressing vulnerabilities or security weaknesses.

Diff

diff --git a/amazonglacier/latest/dev/uploading-an-archive-mpu-using-java.md b/amazonglacier/latest/dev/uploading-an-archive-mpu-using-java.md
index 30ee8064a..9c054f934 100644
--- a//amazonglacier/latest/dev/uploading-an-archive-mpu-using-java.md
+++ b//amazonglacier/latest/dev/uploading-an-archive-mpu-using-java.md
@@ -7 +7 @@ Uploading Large Archives in Parts Using the High-Level API of the AWS SDK for Ja
-**This page is only for existing customers of the S3 Glacier service using Vaults and the original REST API from 2012.**
+**This page is only for existing customers of the Glacier service using Vaults and the original REST API from 2012.**
@@ -9 +9 @@ Uploading Large Archives in Parts Using the High-Level API of the AWS SDK for Ja
-If you're looking for archival storage solutions we suggest using the S3 Glacier storage classes in Amazon S3, **S3 Glacier Instant Retrieval** , **S3 Glacier Flexible Retrieval** , and **S3 Glacier Deep Archive**. To learn more about these storage options, see [S3 Glacier storage classes](https://aws.amazon.com/s3/storage-classes/glacier/) and [Long-term data storage using S3 Glacier storage classes](https://docs.aws.amazon.com/AmazonS3/latest/userguide/glacier-storage-classes) in the _Amazon S3 User Guide_. These storage classes use the Amazon S3 API, are available in all regions, and can be managed within the Amazon S3 console. They offer features like Storage Cost Analysis, Storage Lens, advanced optional encryption features, and more.
+If you're looking for archival storage solutions we suggest using the Glacier storage classes in Amazon S3, **S3 Glacier Instant Retrieval** , **S3 Glacier Flexible Retrieval** , and **S3 Glacier Deep Archive**. To learn more about these storage options, see [Glacier storage classes](https://aws.amazon.com/s3/storage-classes/glacier/) and [Long-term data storage using Glacier storage classes](https://docs.aws.amazon.com/AmazonS3/latest/userguide/glacier-storage-classes) in the _Amazon S3 User Guide_. These storage classes use the Amazon S3 API, are available in all regions, and can be managed within the Amazon S3 console. They offer features like Storage Cost Analysis, Storage Lens, advanced optional encryption features, and more.
@@ -13 +13 @@ If you're looking for archival storage solutions we suggest using the S3 Glacier
-Both the [high-level and low-level APIs](./using-aws-sdk.html) provided by the Amazon SDK for Java provide a method to upload a large archive (see [Uploading an Archive in Amazon S3 Glacier](./uploading-an-archive.html)). 
+Both the [high-level and low-level APIs](./using-aws-sdk.html) provided by the Amazon SDK for Java provide a method to upload a large archive (see [Uploading an Archive in Amazon Glacier](./uploading-an-archive.html)). 
@@ -15 +15 @@ Both the [high-level and low-level APIs](./using-aws-sdk.html) provided by the A
-  * The high-level API provides a method that you can use to upload archives of any size. Depending on the file you are uploading, the method either uploads an archive in a single operation or uses the multipart upload support in Amazon S3 Glacier (S3 Glacier) to upload the archive in parts.
+  * The high-level API provides a method that you can use to upload archives of any size. Depending on the file you are uploading, the method either uploads an archive in a single operation or uses the multipart upload support in Amazon Glacier (Glacier) to upload the archive in parts.
@@ -22 +22 @@ Both the [high-level and low-level APIs](./using-aws-sdk.html) provided by the A
-For more information about the high-level and low-level APIs, see [Using the AWS SDK for Java with Amazon S3 Glacier](./using-aws-sdk-for-java.html).
+For more information about the high-level and low-level APIs, see [Using the AWS SDK for Java with Amazon Glacier](./using-aws-sdk-for-java.html).
@@ -35 +35 @@ For more information about the high-level and low-level APIs, see [Using the AWS
-You use the same methods of the high-level API to upload small or large archives. Based on the archive size, the high-level API methods decide whether to upload the archive in a single operation or use the multipart upload API provided by S3 Glacier. For more information, see [Uploading an Archive Using the High-Level API of the AWS SDK for Java](./uploading-an-archive-single-op-using-java.html#uploading-an-archive-single-op-high-level-using-java).
+You use the same methods of the high-level API to upload small or large archives. Based on the archive size, the high-level API methods decide whether to upload the archive in a single operation or use the multipart upload API provided by Glacier. For more information, see [Uploading an Archive Using the High-Level API of the AWS SDK for Java](./uploading-an-archive-single-op-using-java.html#uploading-an-archive-single-op-high-level-using-java).
@@ -47 +47 @@ You need to specify an AWS Region where you want to save the archive. All operat
-You need to provide vault name in which you want to upload the archive, part size you want to use to upload archive parts, and an optional description. You provide this information by creating an instance of the `InitiateMultipartUploadRequest` class. In response, S3 Glacier returns an upload ID.
+You need to provide vault name in which you want to upload the archive, part size you want to use to upload archive parts, and an optional description. You provide this information by creating an instance of the `InitiateMultipartUploadRequest` class. In response, Glacier returns an upload ID.
@@ -55 +55 @@ For each part you upload, You need to provide the vault name, the byte range in
-You need to provide the upload ID, the checksum of the entire archive, the archive size (combined size of all parts you uploaded), and the vault name. S3 Glacier constructs the archive from the uploaded parts and returns an archive ID.
+You need to provide the upload ID, the checksum of the entire archive, the archive size (combined size of all parts you uploaded), and the vault name. Glacier constructs the archive from the uploaded parts and returns an archive ID.
@@ -62 +62 @@ You need to provide the upload ID, the checksum of the entire archive, the archi
-The following Java code example uses the AWS SDK for Java to upload an archive to a vault (`examplevault`). For step-by-step instructions on how to run this example, see [Running Java Examples for Amazon S3 Glacier Using Eclipse](./using-aws-sdk-for-java.html#setting-up-and-testing-sdk-java). You need to update the code as shown with the name of the file you want to upload.
+The following Java code example uses the AWS SDK for Java to upload an archive to a vault (`examplevault`). For step-by-step instructions on how to run this example, see [Running Java Examples for Amazon Glacier Using Eclipse](./using-aws-sdk-for-java.html#setting-up-and-testing-sdk-java). You need to update the code as shown with the name of the file you want to upload.
@@ -66 +66 @@ The following Java code example uses the AWS SDK for Java to upload an archive t
-This example is valid for part sizes from 1 MB to 1 GB. However, S3 Glacier supports part sizes up to 4 GB. 
+This example is valid for part sizes from 1 MB to 1 GB. However, Glacier supports part sizes up to 4 GB.