Examples of DescribeInstances


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

Examples of com.hazelcast.aws.impl.DescribeInstances

        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

Examples of com.hazelcast.aws.impl.DescribeInstances

        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
Copyright © 2018 www.massapi.com. 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.