| « PreviousNext » | |
![]() ![]() ![]() | Did this page help you? Yes | No | Tell us about it... |
This operation retrieves the notification-configuration subresource set on the
vault (see Set Vault Notification Configuration (PUT
notification-configuration). If notification configuration for a
vault is not set, the operation returns a 404 Not Found error. For more
information about vault notifications, see Configuring Vault Notifications in Amazon Glacier.
To retrieve the notification configuration information, send a GET request to
the URI of a vault's notification-configuration subresource.
GET /AccountId/vaults/VaultName/notification-configuration HTTP/1.1 Host:glacier.Region.amazonaws.com Date:DateAuthorization:SignatureValuex-amz-glacier-version: 2012-06-01
Note
The AccountId is the AWS Account ID. This value must match the AWS Account ID associated with the credentials used to sign the request. You can either specify AWS Account ID or optionally a '-' in which case Amazon Glacier uses the AWS Account ID associated with the credentials used to sign the request. If you specify your Account ID, do not include dashes in it.
This operation does not use request parameters.
This operation uses only request headers that are common to all operations. For information about common request headers, see Common Request Headers.
This operation does not have a request body.
HTTP/1.1 200 OK x-amzn-RequestId: x-amzn-RequestId Date: Date Content-Type: application/json Content-Length: length { "Events": [ String, ... ], "SNSTopic": String }
This operation uses only response headers that are common to most responses. For information about common response headers, see Common Response Headers.
The response body contains the following JSON fields.
A list of one or more events for which Amazon Glacier will send a notification to the specified Amazon SNS topic. For information about vault events for which you can configure a vault to publish notifications, see Set Vault Notification Configuration (PUT notification-configuration).
Type: Array
The Amazon Simple Notification Service (Amazon SNS) topic Amazon Resource Name (ARN). For more information, see Getting Started with Amazon SNS in the Amazon Simple Notification Service Getting Started Guide.
Type: String
For information about Amazon Glacier exceptions and error messages, see Error Responses.
The following example demonstrates how to retrieve the notification configuration for a vault.
In this example, a GET request is sent to the
notification-configuration subresource of a vault.
GET /-/vaults/examplevault/notification-configuration HTTP/1.1 Host: glacier.us-east-1.amazonaws.com x-amz-Date: 20120325T120000Z x-amz-glacier-version: 2012-06-01 Authorization: AWS4-HMAC-SHA256 Credential=AKIAIOSFODNN7EXAMPLE/20120525/us-east-1/glacier/aws4_request,SignedHeaders=host;x-amz-date;x-amz-glacier-version,Signature=9257c16da6b25a715ce900a5b45b03da0447acf430195dcb540091b12966f2a2
A successful response shows the audit logging configuration document in the body of the
response in JSON format. In this example, the configuration shows that notifications
for two events (ArchiveRetrievalCompleted and
InventoryRetrievalCompleted) are sent to the Amazon SNS topic
arn:aws:sns:us-east-1:012345678901:mytopic.
HTTP/1.1 200 OK
x-amzn-RequestId: AAABZpJrTyioDC_HsOmHae8EZp_uBSJr6cnGOLKp_XJCl-Q
Date: Sun, 25 Mar 2012 12:00:00 GMT
Content-Type: application/json
Content-Length: 150
{
"Events": [
"ArchiveRetrievalCompleted",
"InventoryRetrievalCompleted"
],
"SNSTopic": "arn:aws:sns:us-east-1:012345678901:mytopic"
}