Package com.hazelcast.aws.impl

Examples of com.hazelcast.aws.impl.DescribeInstances


        this.awsConfig = awsConfig;
        endpoint = awsConfig.getHostHeader();
    }

    public List<String> getPrivateIpAddresses() throws Exception {
        return new DescribeInstances(awsConfig).execute(endpoint);
    }
View Full Code Here


        this.awsConfig = awsConfig;
        endpoint = awsConfig.getHostHeader();
    }

    public Collection<String> getPrivateIpAddresses() throws Exception {
        final Map<String, String> result = new DescribeInstances(awsConfig).execute(endpoint);
        return result.keySet();
    }
View Full Code Here

        final Map<String, String> result = new DescribeInstances(awsConfig).execute(endpoint);
        return result.keySet();
    }

    public Map<String, String> getAddresses() throws Exception {
        return new DescribeInstances(awsConfig).execute(endpoint);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.aws.impl.DescribeInstances

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.