コード例 #1
0
        public void GlacierGetVaultLock()
        {
            #region to-retrieve-vault-lock-policy-related-attributes-that-are-set-on-a-vault-1481851363097

            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;

            #endregion
        }
コード例 #2
0
 private Amazon.Glacier.Model.GetVaultLockResponse CallAWSServiceOperation(IAmazonGlacier client, Amazon.Glacier.Model.GetVaultLockRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Glacier", "GetVaultLock");
     try
     {
         #if DESKTOP
         return(client.GetVaultLock(request));
         #elif CORECLR
         return(client.GetVaultLockAsync(request).GetAwaiter().GetResult());
         #else
                 #error "Unknown build edition"
         #endif
     }
     catch (AmazonServiceException exc)
     {
         var webException = exc.InnerException as System.Net.WebException;
         if (webException != null)
         {
             throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException);
         }
         throw;
     }
 }