AWS Security ChangesHomeSearch

AWS amazonglacier documentation change

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

File: amazonglacier/latest/dev/retrieving-vault-inventory-java.md

Summary

Updated service name references from 'S3 Glacier' to 'Glacier' and adjusted related documentation links. Minor phrasing changes to align with rebranding.

Security assessment

The changes are purely branding/naming updates (e.g., 'S3 Glacier' → 'Glacier') and link adjustments. No security vulnerabilities, configurations, or features are mentioned or modified. The existing reference to 'advanced optional encryption features' remains unchanged.

Diff

diff --git a/amazonglacier/latest/dev/retrieving-vault-inventory-java.md b/amazonglacier/latest/dev/retrieving-vault-inventory-java.md
index c1e1d1240..099df2bb6 100644
--- a//amazonglacier/latest/dev/retrieving-vault-inventory-java.md
+++ b//amazonglacier/latest/dev/retrieving-vault-inventory-java.md
@@ -7 +7 @@ Example: Retrieving a Vault Inventory Using the Amazon SDK for Java
-**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 @@ Example: Retrieving a Vault Inventory Using the Amazon SDK for Java
-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.
@@ -11 +11 @@ If you're looking for archival storage solutions we suggest using the S3 Glacier
-# Downloading a Vault Inventory in Amazon S3 Glacier Using the AWS SDK for Java
+# Downloading a Vault Inventory in Amazon Glacier Using the AWS SDK for Java
@@ -25 +25 @@ Run `initiateJob` by providing job information in an `InitiateJobRequest` object
-Note that if an inventory has not been completed for the vault an error is returned. Amazon S3 Glacier (S3 Glacier) prepares an inventory for each vault periodically, every 24 hours. 
+Note that if an inventory has not been completed for the vault an error is returned. Amazon Glacier (Glacier) prepares an inventory for each vault periodically, every 24 hours. 
@@ -27 +27 @@ Note that if an inventory has not been completed for the vault an error is retur
-S3 Glacier returns a job ID in response. The response is available in an instance of the `InitiateJobResult` class.
+Glacier returns a job ID in response. The response is available in an instance of the `InitiateJobResult` class.
@@ -42 +42 @@ S3 Glacier returns a job ID in response. The response is available in an instanc
-You must wait until the job output is ready for you to download. If you have either set a notification configuration on the vault, or specified an Amazon Simple Notification Service (Amazon SNS) topic when you initiated the job, S3 Glacier sends a message to the topic after it completes the job. 
+You must wait until the job output is ready for you to download. If you have either set a notification configuration on the vault, or specified an Amazon Simple Notification Service (Amazon SNS) topic when you initiated the job, Glacier sends a message to the topic after it completes the job. 
@@ -44 +44 @@ You must wait until the job output is ready for you to download. If you have eit
-You can also poll S3 Glacier by calling the `describeJob` method to determine job completion status. However, using an Amazon SNS topic for notification is the recommended approach. The code example given in the following section uses Amazon SNS for S3 Glacier to publish a message.
+You can also poll Glacier by calling the `describeJob` method to determine job completion status. However, using an Amazon SNS topic for notification is the recommended approach. The code example given in the following section uses Amazon SNS for Glacier to publish a message.
@@ -48 +48 @@ You can also poll S3 Glacier by calling the `describeJob` method to determine jo
-You provide your account ID, job ID, and vault name by creating an instance of the `GetJobOutputRequest` class. If you don't provide an account ID, then the account ID associated with the credentials you provide to sign the request is used. For more information, see [Using the AWS SDK for Java with Amazon S3 Glacier](./using-aws-sdk-for-java.html). 
+You provide your account ID, job ID, and vault name by creating an instance of the `GetJobOutputRequest` class. If you don't provide an account ID, then the account ID associated with the credentials you provide to sign the request is used. For more information, see [Using the AWS SDK for Java with Amazon Glacier](./using-aws-sdk-for-java.html). 
@@ -50 +50 @@ You provide your account ID, job ID, and vault name by creating an instance of t
-The output that S3 Glacier returns is available in the `GetJobOutputResult` object. 
+The output that Glacier returns is available in the `GetJobOutputResult` object. 
@@ -73 +73 @@ The example performs the following tasks:
-S3 Glacier sends notification to this topic after it completes the job. 
+Glacier sends notification to this topic after it completes the job. 
@@ -81 +81 @@ The example attaches a policy to the queue to enable the Amazon SNS topic to pos
-In the job request, the Amazon SNS topic that was created is specified so that S3 Glacier can publish a notification to the topic after it completes the job.
+In the job request, the Amazon SNS topic that was created is specified so that Glacier can publish a notification to the topic after it completes the job.