JavaScript is disabled on your browser.
Skip navigation links

AWS SDK for Java 1.x API Reference - 1.12.795

We announced the upcoming end-of-support for AWS SDK for Java (v1). We recommend that you migrate to AWS SDK for Java v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement.
com.amazonaws.services.elasticloadbalancing

Interface AmazonElasticLoadBalancing

  • All Known Subinterfaces:
    AmazonElasticLoadBalancingAsync
    All Known Implementing Classes:
    AbstractAmazonElasticLoadBalancing, AbstractAmazonElasticLoadBalancingAsync, AmazonElasticLoadBalancingAsyncClient, AmazonElasticLoadBalancingClient


    @Generated(value="com.amazonaws:aws-java-sdk-code-generator")
    public interface AmazonElasticLoadBalancing
    Interface for accessing Elastic Load Balancing.

    Note: Do not directly implement this interface, new methods are added to it regularly. Extend from AbstractAmazonElasticLoadBalancing instead.

    Elastic Load Balancing

    A load balancer can distribute incoming traffic across your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered instances and ensures that it routes traffic only to healthy instances. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer and a protocol and port number for connections from the load balancer to the instances.

    Elastic Load Balancing supports three types of load balancers: Application Load Balancers, Network Load Balancers, and Classic Load Balancers. You can select a load balancer based on your application needs. For more information, see the Elastic Load Balancing User Guide.

    This reference covers the 2012年06月01日 API, which supports Classic Load Balancers. The 2015年12月01日 API supports Application Load Balancers and Network Load Balancers.

    To get started, create a load balancer with one or more listeners using CreateLoadBalancer. Register your instances with the load balancer using RegisterInstancesWithLoadBalancer.

    All Elastic Load Balancing operations are idempotent, which means that they complete at most one time. If you repeat an operation, it succeeds with a 200 OK response code.

    • Method Detail

      • setEndpoint

        @Deprecated
        void setEndpoint(String endpoint)
        Deprecated. use AwsClientBuilder#setEndpointConfiguration(AwsClientBuilder.EndpointConfiguration) for example: builder.setEndpointConfiguration(new EndpointConfiguration(endpoint, signingRegion));
        Overrides the default endpoint for this client ("elasticloadbalancing.amazonaws.com"). Callers can use this method to control which AWS region they want to work with.

        Callers can pass in just the endpoint (ex: "elasticloadbalancing.amazonaws.com") or a full URL, including the protocol (ex: "elasticloadbalancing.amazonaws.com"). If the protocol is not specified here, the default protocol from this client's ClientConfiguration will be used, which by default is HTTPS.

        For more information on using AWS regions with the AWS SDK for Java, and a complete list of all available endpoints for all AWS services, see: https://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/java-dg-region-selection.html#region-selection- choose-endpoint

        This method is not threadsafe. An endpoint should be configured when the client is created and before any service requests are made. Changing it afterwards creates inevitable race conditions for any service requests in transit or retrying.

        Parameters:
        endpoint - The endpoint (ex: "elasticloadbalancing.amazonaws.com") or a full URL, including the protocol (ex: "elasticloadbalancing.amazonaws.com") of the region specific AWS endpoint this client will communicate with.
      • addTags

        AddTagsResult addTags(AddTagsRequest addTagsRequest)

        Adds the specified tags to the specified load balancer. Each load balancer can have a maximum of 10 tags.

        Each tag consists of a key and an optional value. If a tag with the same key is already associated with the load balancer, AddTags updates its value.

        For more information, see Tag Your Classic Load Balancer in the Classic Load Balancers Guide.

        Parameters:
        addTagsRequest - Contains the parameters for AddTags.
        Returns:
        Result of the AddTags operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        TooManyTagsException - The quota for the number of tags that can be assigned to a load balancer has been reached.
        DuplicateTagKeysException - A tag key was specified more than once.
        See Also:
        AWS API Documentation

        Samples:
        • To add tags to a load balancer
          This example adds two tags to the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          AddTagsRequest request = new AddTagsRequest().withLoadBalancerNames("my-load-balancer").withTags(new Tag().withKey("project").withValue("lima"),
           new Tag().withKey("department").withValue("digital-media"));
          AddTagsResult response = client.addTags(request);
      • applySecurityGroupsToLoadBalancer

        ApplySecurityGroupsToLoadBalancerResult applySecurityGroupsToLoadBalancer(ApplySecurityGroupsToLoadBalancerRequest applySecurityGroupsToLoadBalancerRequest)

        Associates one or more security groups with your load balancer in a virtual private cloud (VPC). The specified security groups override the previously associated security groups.

        For more information, see Security Groups for Load Balancers in a VPC in the Classic Load Balancers Guide.

        Parameters:
        applySecurityGroupsToLoadBalancerRequest - Contains the parameters for ApplySecurityGroupsToLoadBalancer.
        Returns:
        Result of the ApplySecurityGroupsToLoadBalancer operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        InvalidSecurityGroupException - One or more of the specified security groups do not exist.
        See Also:
        AWS API Documentation

        Samples:
        • To associate a security group with a load balancer in a VPC
          This example associates a security group with the specified load balancer in a VPC.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          ApplySecurityGroupsToLoadBalancerRequest request = new ApplySecurityGroupsToLoadBalancerRequest().withLoadBalancerName("my-load-balancer")
           .withSecurityGroups("sg-fc448899");
          ApplySecurityGroupsToLoadBalancerResult response = client.applySecurityGroupsToLoadBalancer(request);
      • attachLoadBalancerToSubnets

        AttachLoadBalancerToSubnetsResult attachLoadBalancerToSubnets(AttachLoadBalancerToSubnetsRequest attachLoadBalancerToSubnetsRequest)

        Adds one or more subnets to the set of configured subnets for the specified load balancer.

        The load balancer evenly distributes requests across all registered subnets. For more information, see Add or Remove Subnets for Your Load Balancer in a VPC in the Classic Load Balancers Guide.

        Parameters:
        attachLoadBalancerToSubnetsRequest - Contains the parameters for AttachLoaBalancerToSubnets.
        Returns:
        Result of the AttachLoadBalancerToSubnets operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        SubnetNotFoundException - One or more of the specified subnets do not exist.
        InvalidSubnetException - The specified VPC has no associated Internet gateway.
        See Also:
        AWS API Documentation

        Samples:
        • To attach subnets to a load balancer
          This example adds the specified subnet to the set of configured subnets for the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          AttachLoadBalancerToSubnetsRequest request = new AttachLoadBalancerToSubnetsRequest().withLoadBalancerName("my-load-balancer").withSubnets(
           "subnet-0ecac448");
          AttachLoadBalancerToSubnetsResult response = client.attachLoadBalancerToSubnets(request);
      • configureHealthCheck

        ConfigureHealthCheckResult configureHealthCheck(ConfigureHealthCheckRequest configureHealthCheckRequest)

        Specifies the health check settings to use when evaluating the health state of your EC2 instances.

        For more information, see Configure Health Checks for Your Load Balancer in the Classic Load Balancers Guide.

        Parameters:
        configureHealthCheckRequest - Contains the parameters for ConfigureHealthCheck.
        Returns:
        Result of the ConfigureHealthCheck operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        See Also:
        AWS API Documentation

        Samples:
        • To specify the health check settings for your backend EC2 instances
          This example specifies the health check settings used to evaluate the health of your backend EC2 instances.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          ConfigureHealthCheckRequest request = new ConfigureHealthCheckRequest().withLoadBalancerName("my-load-balancer").withHealthCheck(
           new HealthCheck().withTarget("HTTP:80/png").withInterval(30).withTimeout(3).withUnhealthyThreshold(2).withHealthyThreshold(2));
          ConfigureHealthCheckResult response = client.configureHealthCheck(request);
      • createAppCookieStickinessPolicy

        CreateAppCookieStickinessPolicyResult createAppCookieStickinessPolicy(CreateAppCookieStickinessPolicyRequest createAppCookieStickinessPolicyRequest)

        Generates a stickiness policy with sticky session lifetimes that follow that of an application-generated cookie. This policy can be associated only with HTTP/HTTPS listeners.

        This policy is similar to the policy created by CreateLBCookieStickinessPolicy, except that the lifetime of the special Elastic Load Balancing cookie, AWSELB, follows the lifetime of the application-generated cookie specified in the policy configuration. The load balancer only inserts a new stickiness cookie when the application response includes a new application cookie.

        If the application cookie is explicitly removed or expires, the session stops being sticky until a new application cookie is issued.

        For more information, see Application-Controlled Session Stickiness in the Classic Load Balancers Guide.

        Parameters:
        createAppCookieStickinessPolicyRequest - Contains the parameters for CreateAppCookieStickinessPolicy.
        Returns:
        Result of the CreateAppCookieStickinessPolicy operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        DuplicatePolicyNameException - A policy with the specified name already exists for this load balancer.
        TooManyPoliciesException - The quota for the number of policies for this load balancer has been reached.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        See Also:
        AWS API Documentation

        Samples:
        • To generate a stickiness policy for your load balancer
          This example generates a stickiness policy that follows the sticky session lifetimes of the application-generated cookie.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          CreateAppCookieStickinessPolicyRequest request = new CreateAppCookieStickinessPolicyRequest().withLoadBalancerName("my-load-balancer")
           .withPolicyName("my-app-cookie-policy").withCookieName("my-app-cookie");
          CreateAppCookieStickinessPolicyResult response = client.createAppCookieStickinessPolicy(request);
      • createLBCookieStickinessPolicy

        CreateLBCookieStickinessPolicyResult createLBCookieStickinessPolicy(CreateLBCookieStickinessPolicyRequest createLBCookieStickinessPolicyRequest)

        Generates a stickiness policy with sticky session lifetimes controlled by the lifetime of the browser (user-agent) or a specified expiration period. This policy can be associated only with HTTP/HTTPS listeners.

        When a load balancer implements this policy, the load balancer uses a special cookie to track the instance for each request. When the load balancer receives a request, it first checks to see if this cookie is present in the request. If so, the load balancer sends the request to the application server specified in the cookie. If not, the load balancer sends the request to a server that is chosen based on the existing load-balancing algorithm.

        A cookie is inserted into the response for binding subsequent requests from the same user to that server. The validity of the cookie is based on the cookie expiration time, which is specified in the policy configuration.

        For more information, see Duration-Based Session Stickiness in the Classic Load Balancers Guide.

        Parameters:
        createLBCookieStickinessPolicyRequest - Contains the parameters for CreateLBCookieStickinessPolicy.
        Returns:
        Result of the CreateLBCookieStickinessPolicy operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        DuplicatePolicyNameException - A policy with the specified name already exists for this load balancer.
        TooManyPoliciesException - The quota for the number of policies for this load balancer has been reached.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        See Also:
        AWS API Documentation

        Samples:
        • To generate a duration-based stickiness policy for your load balancer
          This example generates a stickiness policy with sticky session lifetimes controlled by the specified expiration period.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          CreateLBCookieStickinessPolicyRequest request = new CreateLBCookieStickinessPolicyRequest().withLoadBalancerName("my-load-balancer")
           .withPolicyName("my-duration-cookie-policy").withCookieExpirationPeriod(60L);
          CreateLBCookieStickinessPolicyResult response = client.createLBCookieStickinessPolicy(request);
      • createLoadBalancer

        CreateLoadBalancerResult createLoadBalancer(CreateLoadBalancerRequest createLoadBalancerRequest)

        Creates a Classic Load Balancer.

        You can add listeners, security groups, subnets, and tags when you create your load balancer, or you can add them later using CreateLoadBalancerListeners, ApplySecurityGroupsToLoadBalancer, AttachLoadBalancerToSubnets, and AddTags.

        To describe your current load balancers, see DescribeLoadBalancers. When you are finished with a load balancer, you can delete it using DeleteLoadBalancer.

        You can create up to 20 load balancers per region per account. You can request an increase for the number of load balancers for your account. For more information, see Limits for Your Classic Load Balancer in the Classic Load Balancers Guide.

        Parameters:
        createLoadBalancerRequest - Contains the parameters for CreateLoadBalancer.
        Returns:
        Result of the CreateLoadBalancer operation returned by the service.
        Throws:
        DuplicateLoadBalancerNameException - The specified load balancer name already exists for this account.
        TooManyLoadBalancersException - The quota for the number of load balancers has been reached.
        CertificateNotFoundException - The specified ARN does not refer to a valid SSL certificate in AWS Identity and Access Management (IAM) or AWS Certificate Manager (ACM). Note that if you recently uploaded the certificate to IAM, this error might indicate that the certificate is not fully available yet.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        SubnetNotFoundException - One or more of the specified subnets do not exist.
        InvalidSubnetException - The specified VPC has no associated Internet gateway.
        InvalidSecurityGroupException - One or more of the specified security groups do not exist.
        InvalidSchemeException - The specified value for the schema is not valid. You can only specify a scheme for load balancers in a VPC.
        TooManyTagsException - The quota for the number of tags that can be assigned to a load balancer has been reached.
        DuplicateTagKeysException - A tag key was specified more than once.
        UnsupportedProtocolException - The specified protocol or signature version is not supported.
        OperationNotPermittedException - This operation is not allowed.
        See Also:
        AWS API Documentation

        Samples:
        • To create an internal load balancer
          This example creates an internal load balancer with an HTTP listener in a VPC.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          CreateLoadBalancerRequest request = new CreateLoadBalancerRequest().withLoadBalancerName("my-load-balancer")
           .withListeners(new Listener().withProtocol("HTTP").withLoadBalancerPort(80).withInstanceProtocol("HTTP").withInstancePort(80))
           .withSubnets("subnet-15aaab61").withSecurityGroups("sg-a61988c3");
          CreateLoadBalancerResult response = client.createLoadBalancer(request);AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          CreateLoadBalancerRequest request = new CreateLoadBalancerRequest().withLoadBalancerName("my-load-balancer")
           .withListeners(new Listener().withProtocol("HTTP").withLoadBalancerPort(80).withInstanceProtocol("HTTP").withInstancePort(80))
           .withAvailabilityZones("us-west-2a");
          CreateLoadBalancerResult response = client.createLoadBalancer(request);AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          CreateLoadBalancerRequest request = new CreateLoadBalancerRequest()
           .withLoadBalancerName("my-load-balancer")
           .withListeners(
           new Listener().withProtocol("HTTP").withLoadBalancerPort(80).withInstanceProtocol("HTTP").withInstancePort(80),
           new Listener().withProtocol("HTTPS").withLoadBalancerPort(443).withInstanceProtocol("HTTP").withInstancePort(80)
           .withSSLCertificateId("arn:aws:iam::123456789012:server-certificate/my-server-cert")).withSubnets("subnet-15aaab61")
           .withSecurityGroups("sg-a61988c3");
          CreateLoadBalancerResult response = client.createLoadBalancer(request);AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          CreateLoadBalancerRequest request = new CreateLoadBalancerRequest()
           .withLoadBalancerName("my-load-balancer")
           .withListeners(
           new Listener().withProtocol("HTTP").withLoadBalancerPort(80).withInstanceProtocol("HTTP").withInstancePort(80),
           new Listener().withProtocol("HTTPS").withLoadBalancerPort(443).withInstanceProtocol("HTTP").withInstancePort(80)
           .withSSLCertificateId("arn:aws:iam::123456789012:server-certificate/my-server-cert")).withAvailabilityZones("us-west-2a");
          CreateLoadBalancerResult response = client.createLoadBalancer(request);AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          CreateLoadBalancerRequest request = new CreateLoadBalancerRequest().withLoadBalancerName("my-load-balancer")
           .withListeners(new Listener().withProtocol("HTTP").withLoadBalancerPort(80).withInstanceProtocol("HTTP").withInstancePort(80))
           .withSubnets("subnet-15aaab61").withSecurityGroups("sg-a61988c3").withScheme("internal");
          CreateLoadBalancerResult response = client.createLoadBalancer(request);
      • createLoadBalancerListeners

        CreateLoadBalancerListenersResult createLoadBalancerListeners(CreateLoadBalancerListenersRequest createLoadBalancerListenersRequest)

        Creates one or more listeners for the specified load balancer. If a listener with the specified port does not already exist, it is created; otherwise, the properties of the new listener must match the properties of the existing listener.

        For more information, see Listeners for Your Classic Load Balancer in the Classic Load Balancers Guide.

        Parameters:
        createLoadBalancerListenersRequest - Contains the parameters for CreateLoadBalancerListeners.
        Returns:
        Result of the CreateLoadBalancerListeners operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        DuplicateListenerException - A listener already exists for the specified load balancer name and port, but with a different instance port, protocol, or SSL certificate.
        CertificateNotFoundException - The specified ARN does not refer to a valid SSL certificate in AWS Identity and Access Management (IAM) or AWS Certificate Manager (ACM). Note that if you recently uploaded the certificate to IAM, this error might indicate that the certificate is not fully available yet.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        UnsupportedProtocolException - The specified protocol or signature version is not supported.
        See Also:
        AWS API Documentation

        Samples:
        • To create an HTTPS listener for a load balancer
          This example creates a listener for your load balancer at port 443 using the HTTPS protocol.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          CreateLoadBalancerListenersRequest request = new CreateLoadBalancerListenersRequest().withLoadBalancerName("my-load-balancer").withListeners(
           new Listener().withProtocol("HTTP").withLoadBalancerPort(80).withInstanceProtocol("HTTP").withInstancePort(80));
          CreateLoadBalancerListenersResult response = client.createLoadBalancerListeners(request);AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          CreateLoadBalancerListenersRequest request = new CreateLoadBalancerListenersRequest().withLoadBalancerName("my-load-balancer").withListeners(
           new Listener().withProtocol("HTTPS").withLoadBalancerPort(443).withInstanceProtocol("HTTP").withInstancePort(80)
           .withSSLCertificateId("arn:aws:iam::123456789012:server-certificate/my-server-cert"));
          CreateLoadBalancerListenersResult response = client.createLoadBalancerListeners(request);
      • createLoadBalancerPolicy

        CreateLoadBalancerPolicyResult createLoadBalancerPolicy(CreateLoadBalancerPolicyRequest createLoadBalancerPolicyRequest)

        Creates a policy with the specified attributes for the specified load balancer.

        Policies are settings that are saved for your load balancer and that can be applied to the listener or the application server, depending on the policy type.

        Parameters:
        createLoadBalancerPolicyRequest - Contains the parameters for CreateLoadBalancerPolicy.
        Returns:
        Result of the CreateLoadBalancerPolicy operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        PolicyTypeNotFoundException - One or more of the specified policy types do not exist.
        DuplicatePolicyNameException - A policy with the specified name already exists for this load balancer.
        TooManyPoliciesException - The quota for the number of policies for this load balancer has been reached.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        See Also:
        AWS API Documentation

        Samples:
        • To create a backend server authentication policy
          This example creates a backend server authentication policy that enables authentication on your backend instance using a public key policy.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          CreateLoadBalancerPolicyRequest request = new CreateLoadBalancerPolicyRequest().withLoadBalancerName("my-load-balancer")
           .withPolicyName("my-ProxyProtocol-policy").withPolicyTypeName("ProxyProtocolPolicyType")
           .withPolicyAttributes(new PolicyAttribute().withAttributeName("ProxyProtocol").withAttributeValue("true"));
          CreateLoadBalancerPolicyResult response = client.createLoadBalancerPolicy(request);AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          CreateLoadBalancerPolicyRequest request = new CreateLoadBalancerPolicyRequest()
           .withLoadBalancerName("my-load-balancer")
           .withPolicyName("my-PublicKey-policy")
           .withPolicyTypeName("PublicKeyPolicyType")
           .withPolicyAttributes(
           new PolicyAttribute()
           .withAttributeName("PublicKey")
           .withAttributeValue(
           "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwAYUjnfyEyXr1pxjhFWBpMlggUcqoi3kl+dS74kj//c6x7ROtusUaeQCTgIUkayttRDWchuqo1pHC1u+n5xxXnBBe2ejbb2WRsKIQ5rXEeixsjFpFsojpSQKkzhVGI6mJVZBJDVKSHmswnwLBdofLhzvllpovBPTHe+o4haAWvDBALJU0pkSI1FecPHcs2hwxf14zHoXy1e2k36A64nXW43wtfx5qcVSIxtCEOjnYRg7RPvybaGfQ+v6Iaxb/+7J5kEvZhTFQId+bSiJImF1FSUT1W1xwzBZPUbcUkkXDj45vC2s3Z8E+Lk7a3uZhvsQHLZnrfuWjBWGWvZ/MhZYgEXAMPLE"));
          CreateLoadBalancerPolicyResult response = client.createLoadBalancerPolicy(request);AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          CreateLoadBalancerPolicyRequest request = new CreateLoadBalancerPolicyRequest().withLoadBalancerName("my-load-balancer")
           .withPolicyName("my-authentication-policy").withPolicyTypeName("BackendServerAuthenticationPolicyType")
           .withPolicyAttributes(new PolicyAttribute().withAttributeName("PublicKeyPolicyName").withAttributeValue("my-PublicKey-policy"));
          CreateLoadBalancerPolicyResult response = client.createLoadBalancerPolicy(request);
      • deleteLoadBalancer

        DeleteLoadBalancerResult deleteLoadBalancer(DeleteLoadBalancerRequest deleteLoadBalancerRequest)

        Deletes the specified load balancer.

        If you are attempting to recreate a load balancer, you must reconfigure all settings. The DNS name associated with a deleted load balancer are no longer usable. The name and associated DNS record of the deleted load balancer no longer exist and traffic sent to any of its IP addresses is no longer delivered to your instances.

        If the load balancer does not exist or has already been deleted, the call to DeleteLoadBalancer still succeeds.

        Parameters:
        deleteLoadBalancerRequest - Contains the parameters for DeleteLoadBalancer.
        Returns:
        Result of the DeleteLoadBalancer operation returned by the service.
        See Also:
        AWS API Documentation

        Samples:
        • To delete a load balancer
          This example deletes the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          DeleteLoadBalancerRequest request = new DeleteLoadBalancerRequest().withLoadBalancerName("my-load-balancer");
          DeleteLoadBalancerResult response = client.deleteLoadBalancer(request);
      • deleteLoadBalancerListeners

        DeleteLoadBalancerListenersResult deleteLoadBalancerListeners(DeleteLoadBalancerListenersRequest deleteLoadBalancerListenersRequest)

        Deletes the specified listeners from the specified load balancer.

        Parameters:
        deleteLoadBalancerListenersRequest - Contains the parameters for DeleteLoadBalancerListeners.
        Returns:
        Result of the DeleteLoadBalancerListeners operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        See Also:
        AWS API Documentation

        Samples:
        • To delete a listener from your load balancer
          This example deletes the listener for the specified port from the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          DeleteLoadBalancerListenersRequest request = new DeleteLoadBalancerListenersRequest().withLoadBalancerName("my-load-balancer")
           .withLoadBalancerPorts(80);
          DeleteLoadBalancerListenersResult response = client.deleteLoadBalancerListeners(request);
      • deleteLoadBalancerPolicy

        DeleteLoadBalancerPolicyResult deleteLoadBalancerPolicy(DeleteLoadBalancerPolicyRequest deleteLoadBalancerPolicyRequest)

        Deletes the specified policy from the specified load balancer. This policy must not be enabled for any listeners.

        Parameters:
        deleteLoadBalancerPolicyRequest - Contains the parameters for DeleteLoadBalancerPolicy.
        Returns:
        Result of the DeleteLoadBalancerPolicy operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        See Also:
        AWS API Documentation

        Samples:
        • To delete a policy from your load balancer
          This example deletes the specified policy from the specified load balancer. The policy must not be enabled on any listener.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          DeleteLoadBalancerPolicyRequest request = new DeleteLoadBalancerPolicyRequest().withLoadBalancerName("my-load-balancer").withPolicyName(
           "my-duration-cookie-policy");
          DeleteLoadBalancerPolicyResult response = client.deleteLoadBalancerPolicy(request);
      • deregisterInstancesFromLoadBalancer

        DeregisterInstancesFromLoadBalancerResult deregisterInstancesFromLoadBalancer(DeregisterInstancesFromLoadBalancerRequest deregisterInstancesFromLoadBalancerRequest)

        Deregisters the specified instances from the specified load balancer. After the instance is deregistered, it no longer receives traffic from the load balancer.

        You can use DescribeLoadBalancers to verify that the instance is deregistered from the load balancer.

        For more information, see Register or De-Register EC2 Instances in the Classic Load Balancers Guide.

        Parameters:
        deregisterInstancesFromLoadBalancerRequest - Contains the parameters for DeregisterInstancesFromLoadBalancer.
        Returns:
        Result of the DeregisterInstancesFromLoadBalancer operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        InvalidInstanceException - The specified endpoint is not valid.
        See Also:
        AWS API Documentation

        Samples:
        • To deregister instances from a load balancer
          This example deregisters the specified instance from the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          DeregisterInstancesFromLoadBalancerRequest request = new DeregisterInstancesFromLoadBalancerRequest().withLoadBalancerName("my-load-balancer")
           .withInstances(new Instance().withInstanceId("i-d6f6fae3"));
          DeregisterInstancesFromLoadBalancerResult response = client.deregisterInstancesFromLoadBalancer(request);
      • describeInstanceHealth

        DescribeInstanceHealthResult describeInstanceHealth(DescribeInstanceHealthRequest describeInstanceHealthRequest)

        Describes the state of the specified instances with respect to the specified load balancer. If no instances are specified, the call describes the state of all instances that are currently registered with the load balancer. If instances are specified, their state is returned even if they are no longer registered with the load balancer. The state of terminated instances is not returned.

        Parameters:
        describeInstanceHealthRequest - Contains the parameters for DescribeInstanceHealth.
        Returns:
        Result of the DescribeInstanceHealth operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        InvalidInstanceException - The specified endpoint is not valid.
        See Also:
        AWS API Documentation

        Samples:
        • To describe the health of the instances for a load balancer
          This example describes the health of the instances for the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          DescribeInstanceHealthRequest request = new DescribeInstanceHealthRequest().withLoadBalancerName("my-load-balancer");
          DescribeInstanceHealthResult response = client.describeInstanceHealth(request);
      • describeLoadBalancerAttributes

        DescribeLoadBalancerAttributesResult describeLoadBalancerAttributes(DescribeLoadBalancerAttributesRequest describeLoadBalancerAttributesRequest)

        Describes the attributes for the specified load balancer.

        Parameters:
        describeLoadBalancerAttributesRequest - Contains the parameters for DescribeLoadBalancerAttributes.
        Returns:
        Result of the DescribeLoadBalancerAttributes operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        LoadBalancerAttributeNotFoundException - The specified load balancer attribute does not exist.
        See Also:
        AWS API Documentation

        Samples:
        • To describe the attributes of a load balancer
          This example describes the attributes of the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          DescribeLoadBalancerAttributesRequest request = new DescribeLoadBalancerAttributesRequest().withLoadBalancerName("my-load-balancer");
          DescribeLoadBalancerAttributesResult response = client.describeLoadBalancerAttributes(request);
      • describeLoadBalancerPolicies

        DescribeLoadBalancerPoliciesResult describeLoadBalancerPolicies(DescribeLoadBalancerPoliciesRequest describeLoadBalancerPoliciesRequest)

        Describes the specified policies.

        If you specify a load balancer name, the action returns the descriptions of all policies created for the load balancer. If you specify a policy name associated with your load balancer, the action returns the description of that policy. If you don't specify a load balancer name, the action returns descriptions of the specified sample policies, or descriptions of all sample policies. The names of the sample policies have the ELBSample- prefix.

        Parameters:
        describeLoadBalancerPoliciesRequest - Contains the parameters for DescribeLoadBalancerPolicies.
        Returns:
        Result of the DescribeLoadBalancerPolicies operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        PolicyNotFoundException - One or more of the specified policies do not exist.
        See Also:
        AWS API Documentation

        Samples:
        • To describe a policy associated with a load balancer
          This example describes the specified policy associated with the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          DescribeLoadBalancerPoliciesRequest request = new DescribeLoadBalancerPoliciesRequest().withLoadBalancerName("my-load-balancer").withPolicyNames(
           "my-authentication-policy");
          DescribeLoadBalancerPoliciesResult response = client.describeLoadBalancerPolicies(request);
      • describeLoadBalancerPolicyTypes

        DescribeLoadBalancerPolicyTypesResult describeLoadBalancerPolicyTypes(DescribeLoadBalancerPolicyTypesRequest describeLoadBalancerPolicyTypesRequest)

        Describes the specified load balancer policy types or all load balancer policy types.

        The description of each type indicates how it can be used. For example, some policies can be used only with layer 7 listeners, some policies can be used only with layer 4 listeners, and some policies can be used only with your EC2 instances.

        You can use CreateLoadBalancerPolicy to create a policy configuration for any of these policy types. Then, depending on the policy type, use either SetLoadBalancerPoliciesOfListener or SetLoadBalancerPoliciesForBackendServer to set the policy.

        Parameters:
        describeLoadBalancerPolicyTypesRequest - Contains the parameters for DescribeLoadBalancerPolicyTypes.
        Returns:
        Result of the DescribeLoadBalancerPolicyTypes operation returned by the service.
        Throws:
        PolicyTypeNotFoundException - One or more of the specified policy types do not exist.
        See Also:
        AWS API Documentation

        Samples:
        • To describe a load balancer policy type defined by Elastic Load Balancing
          This example describes the specified load balancer policy type.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          DescribeLoadBalancerPolicyTypesRequest request = new DescribeLoadBalancerPolicyTypesRequest().withPolicyTypeNames("ProxyProtocolPolicyType");
          DescribeLoadBalancerPolicyTypesResult response = client.describeLoadBalancerPolicyTypes(request);
      • describeLoadBalancers

        DescribeLoadBalancersResult describeLoadBalancers(DescribeLoadBalancersRequest describeLoadBalancersRequest)

        Describes the specified the load balancers. If no load balancers are specified, the call describes all of your load balancers.

        Parameters:
        describeLoadBalancersRequest - Contains the parameters for DescribeLoadBalancers.
        Returns:
        Result of the DescribeLoadBalancers operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        DependencyThrottleException - A request made by Elastic Load Balancing to another service exceeds the maximum request rate permitted for your account.
        See Also:
        AWS API Documentation

        Samples:
        • To describe one of your load balancers
          This example describes the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          DescribeLoadBalancersRequest request = new DescribeLoadBalancersRequest().withLoadBalancerNames("my-load-balancer");
          DescribeLoadBalancersResult response = client.describeLoadBalancers(request);
      • describeTags

        DescribeTagsResult describeTags(DescribeTagsRequest describeTagsRequest)

        Describes the tags associated with the specified load balancers.

        Parameters:
        describeTagsRequest - Contains the parameters for DescribeTags.
        Returns:
        Result of the DescribeTags operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        See Also:
        AWS API Documentation

        Samples:
        • To describe the tags for a load balancer
          This example describes the tags for the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          DescribeTagsRequest request = new DescribeTagsRequest().withLoadBalancerNames("my-load-balancer");
          DescribeTagsResult response = client.describeTags(request);
      • detachLoadBalancerFromSubnets

        DetachLoadBalancerFromSubnetsResult detachLoadBalancerFromSubnets(DetachLoadBalancerFromSubnetsRequest detachLoadBalancerFromSubnetsRequest)

        Removes the specified subnets from the set of configured subnets for the load balancer.

        After a subnet is removed, all EC2 instances registered with the load balancer in the removed subnet go into the OutOfService state. Then, the load balancer balances the traffic among the remaining routable subnets.

        Parameters:
        detachLoadBalancerFromSubnetsRequest - Contains the parameters for DetachLoadBalancerFromSubnets.
        Returns:
        Result of the DetachLoadBalancerFromSubnets operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        See Also:
        AWS API Documentation

        Samples:
        • To detach a load balancer from a subnet
          This example detaches the specified load balancer from the specified subnet.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          DetachLoadBalancerFromSubnetsRequest request = new DetachLoadBalancerFromSubnetsRequest().withLoadBalancerName("my-load-balancer").withSubnets(
           "subnet-0ecac448");
          DetachLoadBalancerFromSubnetsResult response = client.detachLoadBalancerFromSubnets(request);
      • disableAvailabilityZonesForLoadBalancer

        DisableAvailabilityZonesForLoadBalancerResult disableAvailabilityZonesForLoadBalancer(DisableAvailabilityZonesForLoadBalancerRequest disableAvailabilityZonesForLoadBalancerRequest)

        Removes the specified Availability Zones from the set of Availability Zones for the specified load balancer in EC2-Classic or a default VPC.

        For load balancers in a non-default VPC, use DetachLoadBalancerFromSubnets.

        There must be at least one Availability Zone registered with a load balancer at all times. After an Availability Zone is removed, all instances registered with the load balancer that are in the removed Availability Zone go into the OutOfService state. Then, the load balancer attempts to equally balance the traffic among its remaining Availability Zones.

        For more information, see Add or Remove Availability Zones in the Classic Load Balancers Guide.

        Parameters:
        disableAvailabilityZonesForLoadBalancerRequest - Contains the parameters for DisableAvailabilityZonesForLoadBalancer.
        Returns:
        Result of the DisableAvailabilityZonesForLoadBalancer operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        See Also:
        AWS API Documentation

        Samples:
        • To disable an Availability Zone for a load balancer
          This example removes the specified Availability Zone from the set of Availability Zones for the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          DisableAvailabilityZonesForLoadBalancerRequest request = new DisableAvailabilityZonesForLoadBalancerRequest().withLoadBalancerName("my-load-balancer")
           .withAvailabilityZones("us-west-2a");
          DisableAvailabilityZonesForLoadBalancerResult response = client.disableAvailabilityZonesForLoadBalancer(request);
      • enableAvailabilityZonesForLoadBalancer

        EnableAvailabilityZonesForLoadBalancerResult enableAvailabilityZonesForLoadBalancer(EnableAvailabilityZonesForLoadBalancerRequest enableAvailabilityZonesForLoadBalancerRequest)

        Adds the specified Availability Zones to the set of Availability Zones for the specified load balancer in EC2-Classic or a default VPC.

        For load balancers in a non-default VPC, use AttachLoadBalancerToSubnets.

        The load balancer evenly distributes requests across all its registered Availability Zones that contain instances. For more information, see Add or Remove Availability Zones in the Classic Load Balancers Guide.

        Parameters:
        enableAvailabilityZonesForLoadBalancerRequest - Contains the parameters for EnableAvailabilityZonesForLoadBalancer.
        Returns:
        Result of the EnableAvailabilityZonesForLoadBalancer operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        See Also:
        AWS API Documentation

        Samples:
        • To enable an Availability Zone for a load balancer
          This example adds the specified Availability Zone to the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          EnableAvailabilityZonesForLoadBalancerRequest request = new EnableAvailabilityZonesForLoadBalancerRequest().withLoadBalancerName("my-load-balancer")
           .withAvailabilityZones("us-west-2b");
          EnableAvailabilityZonesForLoadBalancerResult response = client.enableAvailabilityZonesForLoadBalancer(request);
      • modifyLoadBalancerAttributes

        ModifyLoadBalancerAttributesResult modifyLoadBalancerAttributes(ModifyLoadBalancerAttributesRequest modifyLoadBalancerAttributesRequest)

        Modifies the attributes of the specified load balancer.

        You can modify the load balancer attributes, such as AccessLogs, ConnectionDraining, and CrossZoneLoadBalancing by either enabling or disabling them. Or, you can modify the load balancer attribute ConnectionSettings by specifying an idle connection timeout value for your load balancer.

        For more information, see the following in the Classic Load Balancers Guide:

        Parameters:
        modifyLoadBalancerAttributesRequest - Contains the parameters for ModifyLoadBalancerAttributes.
        Returns:
        Result of the ModifyLoadBalancerAttributes operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        LoadBalancerAttributeNotFoundException - The specified load balancer attribute does not exist.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        See Also:
        AWS API Documentation

        Samples:
        • To enable connection draining
          This example enables connection draining for the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          ModifyLoadBalancerAttributesRequest request = new ModifyLoadBalancerAttributesRequest().withLoadBalancerName("my-load-balancer")
           .withLoadBalancerAttributes(new LoadBalancerAttributes().withCrossZoneLoadBalancing(new CrossZoneLoadBalancing().withEnabled(true)));
          ModifyLoadBalancerAttributesResult response = client.modifyLoadBalancerAttributes(request);AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          ModifyLoadBalancerAttributesRequest request = new ModifyLoadBalancerAttributesRequest().withLoadBalancerName("my-load-balancer")
           .withLoadBalancerAttributes(new LoadBalancerAttributes().withConnectionDraining(new ConnectionDraining().withEnabled(true).withTimeout(300)));
          ModifyLoadBalancerAttributesResult response = client.modifyLoadBalancerAttributes(request);
      • registerInstancesWithLoadBalancer

        RegisterInstancesWithLoadBalancerResult registerInstancesWithLoadBalancer(RegisterInstancesWithLoadBalancerRequest registerInstancesWithLoadBalancerRequest)

        Adds the specified instances to the specified load balancer.

        The instance must be a running instance in the same network as the load balancer (EC2-Classic or the same VPC). If you have EC2-Classic instances and a load balancer in a VPC with ClassicLink enabled, you can link the EC2-Classic instances to that VPC and then register the linked EC2-Classic instances with the load balancer in the VPC.

        Note that RegisterInstanceWithLoadBalancer completes when the request has been registered. Instance registration takes a little time to complete. To check the state of the registered instances, use DescribeLoadBalancers or DescribeInstanceHealth.

        After the instance is registered, it starts receiving traffic and requests from the load balancer. Any instance that is not in one of the Availability Zones registered for the load balancer is moved to the OutOfService state. If an Availability Zone is added to the load balancer later, any instances registered with the load balancer move to the InService state.

        To deregister instances from a load balancer, use DeregisterInstancesFromLoadBalancer.

        For more information, see Register or De-Register EC2 Instances in the Classic Load Balancers Guide.

        Parameters:
        registerInstancesWithLoadBalancerRequest - Contains the parameters for RegisterInstancesWithLoadBalancer.
        Returns:
        Result of the RegisterInstancesWithLoadBalancer operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        InvalidInstanceException - The specified endpoint is not valid.
        See Also:
        AWS API Documentation

        Samples:
        • To register instances with a load balancer
          This example registers the specified instance with the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          RegisterInstancesWithLoadBalancerRequest request = new RegisterInstancesWithLoadBalancerRequest().withLoadBalancerName("my-load-balancer")
           .withInstances(new Instance().withInstanceId("i-d6f6fae3"));
          RegisterInstancesWithLoadBalancerResult response = client.registerInstancesWithLoadBalancer(request);
      • removeTags

        RemoveTagsResult removeTags(RemoveTagsRequest removeTagsRequest)

        Removes one or more tags from the specified load balancer.

        Parameters:
        removeTagsRequest - Contains the parameters for RemoveTags.
        Returns:
        Result of the RemoveTags operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        See Also:
        AWS API Documentation

        Samples:
        • To remove tags from a load balancer
          This example removes the specified tag from the specified load balancer.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          RemoveTagsRequest request = new RemoveTagsRequest().withLoadBalancerNames("my-load-balancer").withTags(new TagKeyOnly().withKey("project"));
          RemoveTagsResult response = client.removeTags(request);
      • setLoadBalancerListenerSSLCertificate

        SetLoadBalancerListenerSSLCertificateResult setLoadBalancerListenerSSLCertificate(SetLoadBalancerListenerSSLCertificateRequest setLoadBalancerListenerSSLCertificateRequest)

        Sets the certificate that terminates the specified listener's SSL connections. The specified certificate replaces any prior certificate that was used on the same load balancer and port.

        For more information about updating your SSL certificate, see Replace the SSL Certificate for Your Load Balancer in the Classic Load Balancers Guide.

        Parameters:
        setLoadBalancerListenerSSLCertificateRequest - Contains the parameters for SetLoadBalancerListenerSSLCertificate.
        Returns:
        Result of the SetLoadBalancerListenerSSLCertificate operation returned by the service.
        Throws:
        CertificateNotFoundException - The specified ARN does not refer to a valid SSL certificate in AWS Identity and Access Management (IAM) or AWS Certificate Manager (ACM). Note that if you recently uploaded the certificate to IAM, this error might indicate that the certificate is not fully available yet.
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        ListenerNotFoundException - The load balancer does not have a listener configured at the specified port.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        UnsupportedProtocolException - The specified protocol or signature version is not supported.
        See Also:
        AWS API Documentation

        Samples:
        • To update the SSL certificate for an HTTPS listener
          This example replaces the existing SSL certificate for the specified HTTPS listener.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          SetLoadBalancerListenerSSLCertificateRequest request = new SetLoadBalancerListenerSSLCertificateRequest().withLoadBalancerName("my-load-balancer")
           .withLoadBalancerPort(443).withSSLCertificateId("arn:aws:iam::123456789012:server-certificate/new-server-cert");
          SetLoadBalancerListenerSSLCertificateResult response = client.setLoadBalancerListenerSSLCertificate(request);
      • setLoadBalancerPoliciesForBackendServer

        SetLoadBalancerPoliciesForBackendServerResult setLoadBalancerPoliciesForBackendServer(SetLoadBalancerPoliciesForBackendServerRequest setLoadBalancerPoliciesForBackendServerRequest)

        Replaces the set of policies associated with the specified port on which the EC2 instance is listening with a new set of policies. At this time, only the back-end server authentication policy type can be applied to the instance ports; this policy type is composed of multiple public key policies.

        Each time you use SetLoadBalancerPoliciesForBackendServer to enable the policies, use the PolicyNames parameter to list the policies that you want to enable.

        You can use DescribeLoadBalancers or DescribeLoadBalancerPolicies to verify that the policy is associated with the EC2 instance.

        For more information about enabling back-end instance authentication, see Configure Back-end Instance Authentication in the Classic Load Balancers Guide. For more information about Proxy Protocol, see Configure Proxy Protocol Support in the Classic Load Balancers Guide.

        Parameters:
        setLoadBalancerPoliciesForBackendServerRequest - Contains the parameters for SetLoadBalancerPoliciesForBackendServer.
        Returns:
        Result of the SetLoadBalancerPoliciesForBackendServer operation returned by the service.
        Throws:
        LoadBalancerNotFoundException - The specified load balancer does not exist.
        PolicyNotFoundException - One or more of the specified policies do not exist.
        InvalidConfigurationRequestException - The requested configuration change is not valid.
        See Also:
        AWS API Documentation

        Samples:
        • To replace the policies associated with a port for a backend instance
          This example replaces the policies that are currently associated with the specified port.
          AmazonElasticLoadBalancing client = AmazonElasticLoadBalancingClientBuilder.standard().build();
          SetLoadBalancerPoliciesForBackendServerRequest request = new SetLoadBalancerPoliciesForBackendServerRequest().withLoadBalancerName("my-load-balancer")
           .withInstancePort(80).withPolicyNames("my-ProxyProtocol-policy");
          SetLoadBalancerPoliciesForBackendServerResult response = client.setLoadBalancerPoliciesForBackendServer(request);
      • shutdown

        void shutdown()
        Shuts down this client object, releasing any resources that might be held open. This is an optional method, and callers are not expected to call it, but can if they want to explicitly release any open resources. Once a client has been shutdown, it should not be used to make any more requests.
      • getCachedResponseMetadata

        ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request)
        Returns additional metadata for a previously executed successful request, typically used for debugging issues where a service isn't acting as expected. This data isn't considered part of the result data returned by an operation, so it's available through this separate, diagnostic interface.

        Response metadata is only cached for a limited period of time, so if you need to access this extra diagnostic information for an executed request, you should use this method to retrieve it as soon as possible after executing a request.

        Parameters:
        request - The originally executed request.
        Returns:
        The response metadata for the specified request, or null if none is available.
Skip navigation links

AltStyle によって変換されたページ (->オリジナル) /