public void GlacierDescribeVault()
        {
            #region 3c1c6e9d-f5a2-427a-aa6a-f439eacfc05f

            var response = client.DescribeVault(new DescribeVaultRequest
            {
                AccountId = "-",
                VaultName = "my-vault"
            });

            string creationDate     = response.CreationDate;
            long   numberOfArchives = response.NumberOfArchives;
            long   sizeInBytes      = response.SizeInBytes;
            string vaultARN         = response.VaultARN;
            string vaultName        = response.VaultName;

            #endregion
        }
 private Amazon.Glacier.Model.DescribeVaultResponse CallAWSServiceOperation(IAmazonGlacier client, Amazon.Glacier.Model.DescribeVaultRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Amazon Glacier", "DescribeVault");
     try
     {
         #if DESKTOP
         return(client.DescribeVault(request));
         #elif CORECLR
         return(client.DescribeVaultAsync(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;
     }
 }