All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mozafaq.extmergesort.AWSUtils Maven / Gradle / Ivy

There is a newer version: 2.0.4.RELEASE
Show newest version
package com.mozafaq.extmergesort;

import com.amazonaws.auth.AWSCredentials;
import com.amazonaws.auth.profile.ProfileCredentialsProvider;

/**
 * @author Mozaffar Afaque
 */
public class AWSUtils {

    public static final String AWS_PROFILE_DEFAULT = "default";

    public static AWSCredentials createAWSCredentials(String awsProfile) {
        ProfileCredentialsProvider profileCredentialsProvider =
                new ProfileCredentialsProvider(awsProfile);
        return profileCredentialsProvider.getCredentials();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy