AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

This operation retrieves the following attributes from the lock-policy subresource set on the specified vault:

A vault lock is put into the InProgress state by calling InitiateVaultLock. A vault lock is put into the Locked state by calling CompleteVaultLock. You can abort the vault locking process by calling AbortVaultLock. For more information about the vault locking process, Amazon Glacier Vault Lock.

If there is no vault lock policy set on the vault, the operation returns a 404 Not found error. For more information about vault lock policies, Amazon Glacier Access Control with Vault Lock Policies.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to GetVaultLockAsync.

Namespace: Amazon.Glacier
Assembly: AWSSDK.Glacier.dll
Version: 3.x.y.z

Syntax

C#
public virtual GetVaultLockResponse GetVaultLock(
         GetVaultLockRequest request
)

Parameters

request
Type: Amazon.Glacier.Model.GetVaultLockRequest

Container for the necessary parameters to execute the GetVaultLock service method.

Return Value


The response from the GetVaultLock service method, as returned by Glacier.

Exceptions

ExceptionCondition
InvalidParameterValueException Returned if a parameter of the request is incorrectly specified.
MissingParameterValueException Returned if a required header or parameter is missing from the request.
ResourceNotFoundException Returned if the specified resource (such as a vault, upload ID, or job ID) doesn't exist.
ServiceUnavailableException Returned if the service cannot complete the request.

Examples

The example retrieves the attributes from the lock-policy subresource set on the vault named examplevault.

To retrieve vault lock-policy related attributes that are set on a vault


var client = new AmazonGlacierClient();
var response = client.GetVaultLock(new GetVaultLockRequest 
{
    AccountId = "-",
    VaultName = "examplevault"
});

string creationDate = response.CreationDate;
string expirationDate = response.ExpirationDate;
string policy = response.Policy;
string state = response.State;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also