Package com.amazonaws.services.redshift

Examples of com.amazonaws.services.redshift.AmazonRedshiftClient


    private void createRedshiftCluster(String clusterIdentifier,
            String databaseName,
            String clusterType,
            int numberOfNodes) {
        // Make sure the Amazon Redshift cluster is available
        AmazonRedshiftClient redshiftClient = new AmazonRedshiftClient(config.AWS_CREDENTIALS_PROVIDER);
        redshiftClient.setEndpoint(config.REDSHIFT_ENDPOINT);
        LOG.info("Creating Amazon Redshift cluster " + clusterIdentifier);
        RedshiftUtils.createCluster(redshiftClient,
                clusterIdentifier,
                databaseName,
                config.REDSHIFT_USERNAME,
View Full Code Here

TOP

Related Classes of com.amazonaws.services.redshift.AmazonRedshiftClient

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.