Beispiel #1
0
 private static void DeleteTag(KmsClient kmsClient)
 {
     try
     {
         var req = new DeleteTagRequest
         {
             VersionId = "v1.0",
             KeyId     = GetKeyByStatus.GetKeyByKeyStatus(kmsClient, "2"),
             Key       = "key"
         };
         var resp = kmsClient.DeleteTag(req);
         Console.WriteLine(resp.HttpStatusCode);
     }
     catch (RequestTimeoutException requestTimeoutException)
     {
         Console.WriteLine(requestTimeoutException.ErrorMessage);
     }
     catch (ServiceResponseException clientRequestException)
     {
         Console.WriteLine(clientRequestException.HttpStatusCode);
         Console.WriteLine(clientRequestException.ErrorCode);
         Console.WriteLine(clientRequestException.ErrorMsg);
     }
     catch (ConnectionException connectionException)
     {
         Console.WriteLine(connectionException.ErrorMessage);
     }
 }