I get the elb details of a specific region say europe then i am able to get the instances that are related the the ELB. the problem is i am not able to get the public dns of those instances. what i do is
conn = regions[3].connect(aws_access_key_id= access, aws_secret_access_key = secret_key)
loadbalancers = conn.get_all_load_balancers()
for lb in loadbalancers:
print lb.instances
how to get the public_dns_name of these instances
when i try
for i in lb.instances:
i.public_dns_name
AttributeError: 'InstanceInfo' object has no attribute 'public_dns_name'