Package com.amazonaws.services.elasticloadbalancing.model

Examples of com.amazonaws.services.elasticloadbalancing.model.HealthCheck


          .withLoadBalancerName(this.loadBalancerName)
          .withAvailabilityZones(this.availabilityZones)
          .withListeners(this.portForwarding);
      CreateLoadBalancerResult result = getClient().getApi()
          .createLoadBalancer(request);
      HealthCheck healthCheck = new HealthCheck().withTarget("HTTP:80/")
          .withInterval(10).withUnhealthyThreshold(3).withTimeout(5)
          .withHealthyThreshold(3);
      getClient()
          .getApi()
          .configureHealthCheck(
View Full Code Here

TOP

Related Classes of com.amazonaws.services.elasticloadbalancing.model.HealthCheck

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.