Class AwsBasicCredentials
- java.lang.Object
-
- software.amazon.awssdk.auth.credentials.AwsBasicCredentials
-
- All Implemented Interfaces:
AwsCredentials,AwsCredentialsIdentity,Identity
@Immutable public final class AwsBasicCredentials extends Object implements AwsCredentials
Provides access to the AWS credentials used for accessing services: AWS access key ID and secret access key. These credentials are used to securely sign requests to services (e.g., AWS services) that use them for authentication.For more details on AWS access keys, see: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
- See Also:
AwsCredentialsProvider
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface software.amazon.awssdk.identity.spi.AwsCredentialsIdentity
AwsCredentialsIdentity.Builder
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAwsBasicCredentials(String accessKeyId, String secretAccessKey)Constructs a new credentials object, with the specified AWS access key and AWS secret key.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringaccessKeyId()Retrieve the AWS access key, used to identify the user interacting with AWS.static AwsBasicCredentialscreate(String accessKeyId, String secretAccessKey)Constructs a new credentials object, with the specified AWS access key and AWS secret key.booleanequals(Object o)inthashCode()StringsecretAccessKey()Retrieve the AWS secret access key, used to authenticate the user interacting with AWS.StringtoString()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.identity.spi.Identity
expirationTime
-
-
-
-
Constructor Detail
-
AwsBasicCredentials
protected AwsBasicCredentials(String accessKeyId, String secretAccessKey)
Constructs a new credentials object, with the specified AWS access key and AWS secret key.- Parameters:
accessKeyId- The AWS access key, used to identify the user interacting with AWS.secretAccessKey- The AWS secret access key, used to authenticate the user interacting with AWS.
-
-
Method Detail
-
create
public static AwsBasicCredentials create(String accessKeyId, String secretAccessKey)
Constructs a new credentials object, with the specified AWS access key and AWS secret key.- Parameters:
accessKeyId- The AWS access key, used to identify the user interacting with AWS.secretAccessKey- The AWS secret access key, used to authenticate the user interacting with AWS.
-
accessKeyId
public String accessKeyId()
Retrieve the AWS access key, used to identify the user interacting with AWS.- Specified by:
accessKeyIdin interfaceAwsCredentialsIdentity
-
secretAccessKey
public String secretAccessKey()
Retrieve the AWS secret access key, used to authenticate the user interacting with AWS.- Specified by:
secretAccessKeyin interfaceAwsCredentialsIdentity
-
-