public void GlacierSetVaultNotifications()
        {
            #region to-configure-a-vault-to-post-a-message-to-an-amazon-simple-notification-service-amazon-sns-topic-when-jobs-complete-1482186397475

            var response = client.SetVaultNotifications(new SetVaultNotificationsRequest
            {
                AccountId = "-",
                VaultName = "examplevault",
                VaultNotificationConfig = new VaultNotificationConfig {
                    Events = new List <string> {
                        "ArchiveRetrievalCompleted",
                        "InventoryRetrievalCompleted"
                    },
                    SNSTopic = "arn:aws:sns:us-west-2:012345678901:mytopic"
                }
            });


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