public void ElasticLoadBalancingConfigureHealthCheck()
        {
            #region elb-configure-health-check-1

            var response = client.ConfigureHealthCheck(new ConfigureHealthCheckRequest
            {
                HealthCheck = new HealthCheck {
                    HealthyThreshold   = 2,
                    Interval           = 30,
                    Target             = "HTTP:80/png",
                    Timeout            = 3,
                    UnhealthyThreshold = 2
                },
                LoadBalancerName = "my-load-balancer"
            });

            HealthCheck healthCheck = response.HealthCheck;

            #endregion
        }
Exemple #2
0
 private Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckResponse CallAWSServiceOperation(IAmazonElasticLoadBalancing client, Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "Elastic Load Balancing", "ConfigureHealthCheck");
     try
     {
         #if DESKTOP
         return(client.ConfigureHealthCheck(request));
         #elif CORECLR
         return(client.ConfigureHealthCheckAsync(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;
     }
 }