ElasticLoadBalancing / Client / describe_load_balancers
describe_load_balancers#
- ElasticLoadBalancing.Client.describe_load_balancers(**kwargs)#
- Describes the specified the load balancers. If no load balancers are specified, the call describes all of your load balancers. - See also: AWS API Documentation - Request Syntax- response = client.describe_load_balancers( LoadBalancerNames=[ 'string', ], Marker='string', PageSize=123 ) - Parameters:
- LoadBalancerNames (list) – - The names of the load balancers. - (string) – 
 
- Marker (string) – The marker for the next set of results. (You received this marker from a previous call.) 
- PageSize (integer) – The maximum number of results to return with this call (a number from 1 to 400). The default is 400. 
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'LoadBalancerDescriptions': [ { 'LoadBalancerName': 'string', 'DNSName': 'string', 'CanonicalHostedZoneName': 'string', 'CanonicalHostedZoneNameID': 'string', 'ListenerDescriptions': [ { 'Listener': { 'Protocol': 'string', 'LoadBalancerPort': 123, 'InstanceProtocol': 'string', 'InstancePort': 123, 'SSLCertificateId': 'string' }, 'PolicyNames': [ 'string', ] }, ], 'Policies': { 'AppCookieStickinessPolicies': [ { 'PolicyName': 'string', 'CookieName': 'string' }, ], 'LBCookieStickinessPolicies': [ { 'PolicyName': 'string', 'CookieExpirationPeriod': 123 }, ], 'OtherPolicies': [ 'string', ] }, 'BackendServerDescriptions': [ { 'InstancePort': 123, 'PolicyNames': [ 'string', ] }, ], 'AvailabilityZones': [ 'string', ], 'Subnets': [ 'string', ], 'VPCId': 'string', 'Instances': [ { 'InstanceId': 'string' }, ], 'HealthCheck': { 'Target': 'string', 'Interval': 123, 'Timeout': 123, 'UnhealthyThreshold': 123, 'HealthyThreshold': 123 }, 'SourceSecurityGroup': { 'OwnerAlias': 'string', 'GroupName': 'string' }, 'SecurityGroups': [ 'string', ], 'CreatedTime': datetime(2015, 1, 1), 'Scheme': 'string' }, ], 'NextMarker': 'string' } - Response Structure- (dict) – - Contains the parameters for DescribeLoadBalancers. - LoadBalancerDescriptions (list) – - Information about the load balancers. - (dict) – - Information about a load balancer. - LoadBalancerName (string) – - The name of the load balancer. 
- DNSName (string) – - The DNS name of the load balancer. 
- CanonicalHostedZoneName (string) – - The DNS name of the load balancer. - For more information, see Configure a Custom Domain Name in the Classic Load Balancers Guide. 
- CanonicalHostedZoneNameID (string) – - The ID of the Amazon Route 53 hosted zone for the load balancer. 
- ListenerDescriptions (list) – - The listeners for the load balancer. - (dict) – - The policies enabled for a listener. - Listener (dict) – - The listener. - Protocol (string) – - The load balancer transport protocol to use for routing: HTTP, HTTPS, TCP, or SSL. 
- LoadBalancerPort (integer) – - The port on which the load balancer is listening. On EC2-VPC, you can specify any port from the range 1-65535. On EC2-Classic, you can specify any port from the following list: 25, 80, 443, 465, 587, 1024-65535. 
- InstanceProtocol (string) – - The protocol to use for routing traffic to instances: HTTP, HTTPS, TCP, or SSL. - If the front-end protocol is TCP or SSL, the back-end protocol must be TCP or SSL. If the front-end protocol is HTTP or HTTPS, the back-end protocol must be HTTP or HTTPS. - If there is another listener with the same - InstancePortwhose- InstanceProtocolis secure, (HTTPS or SSL), the listener’s- InstanceProtocolmust also be secure.- If there is another listener with the same - InstancePortwhose- InstanceProtocolis HTTP or TCP, the listener’s- InstanceProtocolmust be HTTP or TCP.
- InstancePort (integer) – - The port on which the instance is listening. 
- SSLCertificateId (string) – - The Amazon Resource Name (ARN) of the server certificate. 
 
- PolicyNames (list) – - The policies. If there are no policies enabled, the list is empty. - (string) – 
 
 
 
- Policies (dict) – - The policies defined for the load balancer. - AppCookieStickinessPolicies (list) – - The stickiness policies created using CreateAppCookieStickinessPolicy. - (dict) – - Information about a policy for application-controlled session stickiness. - PolicyName (string) – - The mnemonic name for the policy being created. The name must be unique within a set of policies for this load balancer. 
- CookieName (string) – - The name of the application cookie used for stickiness. 
 
 
- LBCookieStickinessPolicies (list) – - The stickiness policies created using CreateLBCookieStickinessPolicy. - (dict) – - Information about a policy for duration-based session stickiness. - PolicyName (string) – - The name of the policy. This name must be unique within the set of policies for this load balancer. 
- CookieExpirationPeriod (integer) – - The time period, in seconds, after which the cookie should be considered stale. If this parameter is not specified, the stickiness session lasts for the duration of the browser session. 
 
 
- OtherPolicies (list) – - The policies other than the stickiness policies. - (string) – 
 
 
- BackendServerDescriptions (list) – - Information about your EC2 instances. - (dict) – - Information about the configuration of an EC2 instance. - InstancePort (integer) – - The port on which the EC2 instance is listening. 
- PolicyNames (list) – - The names of the policies enabled for the EC2 instance. - (string) – 
 
 
 
- AvailabilityZones (list) – - The Availability Zones for the load balancer. - (string) – 
 
- Subnets (list) – - The IDs of the subnets for the load balancer. - (string) – 
 
- VPCId (string) – - The ID of the VPC for the load balancer. 
- Instances (list) – - The IDs of the instances for the load balancer. - (dict) – - The ID of an EC2 instance. - InstanceId (string) – - The instance ID. 
 
 
- HealthCheck (dict) – - Information about the health checks conducted on the load balancer. - Target (string) – - The instance being checked. The protocol is either TCP, HTTP, HTTPS, or SSL. The range of valid ports is one (1) through 65535. - TCP is the default, specified as a TCP: port pair, for example “TCP:5000”. In this case, a health check simply attempts to open a TCP connection to the instance on the specified port. Failure to connect within the configured timeout is considered unhealthy. - SSL is also specified as SSL: port pair, for example, SSL:5000. - For HTTP/HTTPS, you must include a ping path in the string. HTTP is specified as a HTTP:port;/;PathToPing; grouping, for example “HTTP:80/weather/us/wa/seattle”. In this case, a HTTP GET request is issued to the instance on the given port and path. Any answer other than “200 OK” within the timeout period is considered unhealthy. - The total length of the HTTP ping target must be 1024 16-bit Unicode characters or less. 
- Interval (integer) – - The approximate interval, in seconds, between health checks of an individual instance. 
- Timeout (integer) – - The amount of time, in seconds, during which no response means a failed health check. - This value must be less than the - Intervalvalue.
- UnhealthyThreshold (integer) – - The number of consecutive health check failures required before moving the instance to the - Unhealthystate.
- HealthyThreshold (integer) – - The number of consecutive health checks successes required before moving the instance to the - Healthystate.
 
- SourceSecurityGroup (dict) – - The security group for the load balancer, which you can use as part of your inbound rules for your registered instances. To only allow traffic from load balancers, add a security group rule that specifies this source security group as the inbound source. - OwnerAlias (string) – - The owner of the security group. 
- GroupName (string) – - The name of the security group. 
 
- SecurityGroups (list) – - The security groups for the load balancer. Valid only for load balancers in a VPC. - (string) – 
 
- CreatedTime (datetime) – - The date and time the load balancer was created. 
- Scheme (string) – - The type of load balancer. Valid only for load balancers in a VPC. - If - Schemeis- internet-facing, the load balancer has a public DNS name that resolves to a public IP address.- If - Schemeis- internal, the load balancer has a public DNS name that resolves to a private IP address.
 
 
- NextMarker (string) – - The marker to use when requesting the next set of results. If there are no additional results, the string is empty. 
 
 
 - Exceptions- ElasticLoadBalancing.Client.exceptions.AccessPointNotFoundException
- ElasticLoadBalancing.Client.exceptions.DependencyThrottleException
 - Examples- This example describes the specified load balancer. - response = client.describe_load_balancers( LoadBalancerNames=[ 'my-load-balancer', ], ) print(response) - Expected Output: - { 'LoadBalancerDescriptions': [ { 'AvailabilityZones': [ 'us-west-2a', ], 'BackendServerDescriptions': [ { 'InstancePort': 80, 'PolicyNames': [ 'my-ProxyProtocol-policy', ], }, ], 'CanonicalHostedZoneName': 'my-load-balancer-1234567890.us-west-2.elb.amazonaws.com', 'CanonicalHostedZoneNameID': 'Z3DZXE0EXAMPLE', 'CreatedTime': datetime(2015, 3, 19, 3, 24, 2, 3, 78, 0), 'DNSName': 'my-load-balancer-1234567890.us-west-2.elb.amazonaws.com', 'HealthCheck': { 'HealthyThreshold': 2, 'Interval': 30, 'Target': 'HTTP:80/png', 'Timeout': 3, 'UnhealthyThreshold': 2, }, 'Instances': [ { 'InstanceId': 'i-207d9717', }, { 'InstanceId': 'i-afefb49b', }, ], 'ListenerDescriptions': [ { 'Listener': { 'InstancePort': 80, 'InstanceProtocol': 'HTTP', 'LoadBalancerPort': 80, 'Protocol': 'HTTP', }, 'PolicyNames': [ ], }, { 'Listener': { 'InstancePort': 443, 'InstanceProtocol': 'HTTPS', 'LoadBalancerPort': 443, 'Protocol': 'HTTPS', 'SSLCertificateId': 'arn:aws:iam::123456789012:server-certificate/my-server-cert', }, 'PolicyNames': [ 'ELBSecurityPolicy-2015-03', ], }, ], 'LoadBalancerName': 'my-load-balancer', 'Policies': { 'AppCookieStickinessPolicies': [ ], 'LBCookieStickinessPolicies': [ { 'CookieExpirationPeriod': 60, 'PolicyName': 'my-duration-cookie-policy', }, ], 'OtherPolicies': [ 'my-PublicKey-policy', 'my-authentication-policy', 'my-SSLNegotiation-policy', 'my-ProxyProtocol-policy', 'ELBSecurityPolicy-2015-03', ], }, 'Scheme': 'internet-facing', 'SecurityGroups': [ 'sg-a61988c3', ], 'SourceSecurityGroup': { 'GroupName': 'my-elb-sg', 'OwnerAlias': '123456789012', }, 'Subnets': [ 'subnet-15aaab61', ], 'VPCId': 'vpc-a01106c2', }, ], 'ResponseMetadata': { '...': '...', }, }