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

com.amazonaws.auth.profile.ProfileCredentialsProvider Maven / Gradle / Ivy

Go to download

The AWS SDK for Java - Core module holds the classes that are used by the individual service clients to interact with Amazon Web Services. Users need to depend on aws-java-sdk artifact for accessing individual client classes.

There is a newer version: 1.12.772
Show newest version
/*
 * Copyright 2014-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *  http://aws.amazon.com/apache2.0
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */
package com.amazonaws.auth.profile;

import com.amazonaws.auth.AWSCredentials;
import com.amazonaws.auth.AWSCredentialsProvider;
import com.amazonaws.util.StringUtils;

/**
 * Credentials provider based on AWS configuration profiles. This provider vends
 * AWSCredentials from the profile configuration file for the default profile,
 * or for a specific, named profile.
 * 

* AWS credential profiles allow you to share multiple sets of AWS security * credentials between different tools like the AWS SDK for Java and the * AWS CLI. *

* See * http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html * * @see ProfilesConfigFile */ public class ProfileCredentialsProvider implements AWSCredentialsProvider { /** * The credential profiles file from which this provider loads the security * credentials. * Lazily loaded by the double-check idiom. */ private volatile ProfilesConfigFile profilesConfigFile; /** The name of the credential profile */ private final String profileName; /** * Creates a new profile credentials provider that returns the AWS security * credentials configured for the default profile. * Loading the credential file is deferred until the getCredentials() method * is called. */ public ProfileCredentialsProvider() { this(null); } /** * Creates a new profile credentials provider that returns the AWS security * credentials configured for the named profile. * Loading the credential file is deferred until the getCredentials() method * is called. * * @param profileName * The name of a local configuration profile. */ public ProfileCredentialsProvider(String profileName) { this((ProfilesConfigFile)null, profileName); } /** * Creates a new profile credentials provider that returns the AWS security * credentials for the specified profiles configuration file and profile * name. * * @param profilesConfigFilePath * The file path where the profile configuration file is located. * @param profileName * The name of a configuration profile in the specified * configuration file. */ public ProfileCredentialsProvider(String profilesConfigFilePath, String profileName) { this(new ProfilesConfigFile(profilesConfigFilePath), profileName); } /** * Creates a new profile credentials provider that returns the AWS security * credentials for the specified profiles configuration file and profile * name. * * @param profilesConfigFile * The profile configuration file containing the profiles used by * this credentials provider. * @param profileName * The name of a configuration profile in the specified * configuration file. */ public ProfileCredentialsProvider(ProfilesConfigFile profilesConfigFile, String profileName) { this.profilesConfigFile = profilesConfigFile; if (profileName == null) { String profileEnvVarOverride = System.getenv(ProfilesConfigFile.AWS_PROFILE_ENVIRONMENT_VARIABLE); profileEnvVarOverride = StringUtils.trim(profileEnvVarOverride); if (!StringUtils.isNullOrEmpty(profileEnvVarOverride)) { this.profileName = profileEnvVarOverride; } else { String profileSysPropOverride = System.getProperty(ProfilesConfigFile.AWS_PROFILE_SYSTEM_PROPERTY); profileSysPropOverride = StringUtils.trim(profileSysPropOverride); if (!StringUtils.isNullOrEmpty(profileSysPropOverride)) { this.profileName = profileSysPropOverride; } else { this.profileName = ProfilesConfigFile.DEFAULT_PROFILE_NAME; } } } else { this.profileName = profileName; } } @Override public AWSCredentials getCredentials() { if (profilesConfigFile == null) { synchronized (this) { if (profilesConfigFile == null) { profilesConfigFile = new ProfilesConfigFile(); } } } return profilesConfigFile.getCredentials(profileName); } @Override public void refresh() {} }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy