public void ElasticBeanstalkDeleteConfigurationTemplate()
        {
            #region to-delete-a-configuration-template-1456269836701

            var response = client.DeleteConfigurationTemplate(new DeleteConfigurationTemplateRequest
            {
                ApplicationName = "my-app",
                TemplateName    = "my-template"
            });


            #endregion
        }
Example #2
0
 private Amazon.ElasticBeanstalk.Model.DeleteConfigurationTemplateResponse CallAWSServiceOperation(IAmazonElasticBeanstalk client, Amazon.ElasticBeanstalk.Model.DeleteConfigurationTemplateRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Elastic Beanstalk", "DeleteConfigurationTemplate");
     try
     {
         #if DESKTOP
         return(client.DeleteConfigurationTemplate(request));
         #elif CORECLR
         return(client.DeleteConfigurationTemplateAsync(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;
     }
 }