public class ClasspathPropertiesFileCredentialsProvider extends java.lang.Object implements AWSCredentialsProvider
AWSCredentialsProvider implementation that loads AWS security
credentials from a properties file on the classpath. The default
constructor creates a credentials provider that loads the credentials
from a file named AwsCredentials.properties on the
classpath, but which file to use from the classpath can also be controled
through the one-argument constructor.
The AWS access key ID is expected to be in the accessKey
property and the AWS secret key is expected to be in the
secretKey property.
| コンストラクタと説明 |
|---|
ClasspathPropertiesFileCredentialsProvider()
Creates a new ClasspathPropertiesFileCredentialsProvider that will
attempt to load the
AwsCredentials.properties file from
the classpath to read AWS security credentials. |
ClasspathPropertiesFileCredentialsProvider(java.lang.String credentialsFilePath)
Creates a new ClasspathPropertiesFileCredentialsProvider that will
attempt to load a custom file from the classpath to read AWS security
credentials.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
AWSCredentials |
getCredentials()
Returns AWSCredentials which the caller can use to authorize an AWS request.
|
void |
refresh()
Forces this credentials provider to refresh its credentials.
|
java.lang.String |
toString() |
public ClasspathPropertiesFileCredentialsProvider()
AwsCredentials.properties file from
the classpath to read AWS security credentials.public ClasspathPropertiesFileCredentialsProvider(java.lang.String credentialsFilePath)
credentialsFilePath - The custom classpath resource path to a properties file
from which the AWS security credentials should be loaded.
For example,
public AWSCredentials getCredentials()
AWSCredentialsProvidergetCredentials インタフェース内 AWSCredentialsProviderpublic void refresh()
AWSCredentialsProviderrefresh インタフェース内 AWSCredentialsProviderpublic java.lang.String toString()
toString クラス内 java.lang.Object