Question

I am trying to find out if there is a way to browse all ELB's for a ios app i am working on.I found a describeloadbalancer method in the aws api, but that requires me to know the load balancer's name. I want to know if there is a way to list all the ELB's associated with my AWS account.

I noticed that there is a aws console app that allows users to browse their elastic load balancers, so im guessing there must be a way to do this.

Was it helpful?

Solution

Regarding DescribeLoadBalancers, are you certain of that behavior? The documentation suggests otherwise, by default:

Returns detailed configuration information for all the load balancers created for the account.

If you specify the load balancers name, the returned results should be limited to those sets of load balancers that you specified:

If you specify load balancer names, the action returns configuration information of the specified load balancers.

Here's a link for the related documentation in AWS SDK for iOS 7.1, if you're interested. It seems to me that this should work fine if you simply do not request any specific ELB names.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top