Package com.amazonaws.services.elasticloadbalancing.model

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


          .withInterval(10).withUnhealthyThreshold(3).withTimeout(5)
          .withHealthyThreshold(3);
      getClient()
          .getApi()
          .configureHealthCheck(
              new ConfigureHealthCheckRequest()
                  .withLoadBalancerName(this.loadBalancerName)
                  .withHealthCheck(healthCheck));
      return result;
    } finally {
      getClient().getApi().shutdown();
View Full Code Here

TOP

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

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.