AWS Security ChangesHomeSearch

AWS amazonglacier documentation change

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

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

Summary

Updated service name references from 'S3 Glacier' to 'Glacier' and adjusted related documentation links/text to align with current branding terminology.

Security assessment

The changes are purely branding/naming updates (removing 'S3' from service references) and documentation link text adjustments. There is no evidence of security vulnerability fixes, encryption changes, or access control modifications. The mention of 'advanced optional encryption features' remains unchanged from the original text.

Diff

diff --git a/amazonglacier/latest/dev/uploading-an-archive-mpu-using-dotnet.md b/amazonglacier/latest/dev/uploading-an-archive-mpu-using-dotnet.md
index bf2a5a7a6..a651947b9 100644
--- a//amazonglacier/latest/dev/uploading-an-archive-mpu-using-dotnet.md
+++ b//amazonglacier/latest/dev/uploading-an-archive-mpu-using-dotnet.md
@@ -7 +7 @@ Uploading Large Archives in Parts Using the High-Level API of the AWS SDK for .N
-**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 .N
-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 .NET provide a method to upload large archives in parts (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 .NET provide a method to upload large archives in parts (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 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 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 .NET with Amazon S3 Glacier](./using-aws-sdk-for-dot-net.html).
+For more information about the high-level and low-level APIs, see [Using the AWS SDK for .NET with Amazon Glacier](./using-aws-sdk-for-dot-net.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 .NET](./uploading-an-archive-single-op-using-dotnet.html#uploading-an-archive-single-op-highlevel-using-dotnet).
+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 .NET](./uploading-an-archive-single-op-using-dotnet.html#uploading-an-archive-single-op-highlevel-using-dotnet).
@@ -47 +47 @@ You need to specify an AWS Region where you want to save the archive. All operat
-You need to provide the vault name to which you want to upload the archive, the 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 the vault name to which you want to upload the archive, the 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.