Package com.amazonaws.auth
Class PropertiesCredentials
java.lang.Object
com.amazonaws.auth.PropertiesCredentials
- All Implemented Interfaces:
AWSCredentials
Simple implementation AWSCredentials that reads in AWS access keys from a
properties file. The AWS access key is expected to be in the "accessKey"
property and the AWS secret key id is expected to be in the "secretKey"
property.
-
Constructor Summary
ConstructorsConstructorDescriptionPropertiesCredentials
(File file) Reads the specified file as a Java properties file and extracts the AWS access key from the "accessKey" property and AWS secret access key from the "secretKey" property.PropertiesCredentials
(InputStream inputStream) Reads the specified input stream as a stream of Java properties file content and extracts the AWS access key ID and secret access key from the properties. -
Method Summary
Modifier and TypeMethodDescriptionReturns the AWS access key ID for this credentials object.Returns the AWS secret access key for this credentials object.
-
Constructor Details
-
PropertiesCredentials
public PropertiesCredentials(File file) throws FileNotFoundException, IOException, IllegalArgumentException Reads the specified file as a Java properties file and extracts the AWS access key from the "accessKey" property and AWS secret access key from the "secretKey" property. If the specified file doesn't contain the AWS access keys an IOException will be thrown.- Parameters:
file
- The file from which to read the AWS credentials properties.- Throws:
FileNotFoundException
- If the specified file isn't found.IOException
- If any problems are encountered reading the AWS access keys from the specified file.IllegalArgumentException
- If the specified properties file does not contain the required keys.
-
PropertiesCredentials
Reads the specified input stream as a stream of Java properties file content and extracts the AWS access key ID and secret access key from the properties.- Parameters:
inputStream
- The input stream containing the AWS credential properties.- Throws:
IOException
- If any problems occur while reading from the input stream.
-
-
Method Details
-
getAWSAccessKeyId
Description copied from interface:AWSCredentials
Returns the AWS access key ID for this credentials object.- Specified by:
getAWSAccessKeyId
in interfaceAWSCredentials
- Returns:
- The AWS access key ID for this credentials object.
-
getAWSSecretKey
Description copied from interface:AWSCredentials
Returns the AWS secret access key for this credentials object.- Specified by:
getAWSSecretKey
in interfaceAWSCredentials
- Returns:
- The AWS secret access key for this credentials object.
-