Skip to content

Commit a787a0f

Browse files
authored
Change aws.secretKey to aws.secretAccessKey (#3358)
1 parent 7a82160 commit a787a0f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

core/aws-core/src/main/java/software/amazon/awssdk/awscore/client/builder/AwsClientBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public interface AwsClientBuilder<BuilderT extends AwsClientBuilder<BuilderT, Cl
3939
*
4040
* <p>The default provider will attempt to identify the credentials automatically using the following checks:
4141
* <ol>
42-
* <li>Java System Properties - <code>aws.accessKeyId</code> and <code>aws.secretKey</code></li>
42+
* <li>Java System Properties - <code>aws.accessKeyId</code> and <code>aws.secretAccessKey</code></li>
4343
* <li>Environment Variables - <code>AWS_ACCESS_KEY_ID</code> and <code>AWS_SECRET_ACCESS_KEY</code></li>
4444
* <li>Credential profiles file at the default location (~/.aws/credentials) shared by all AWS SDKs and the AWS CLI</li>
4545
* <li>Credentials delivered through the Amazon EC2 container service if AWS_CONTAINER_CREDENTIALS_RELATIVE_URI environment

core/aws-core/src/main/java/software/amazon/awssdk/awscore/presigner/SdkPresigner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ interface Builder {
6161
*
6262
* <p>The default provider will attempt to identify the credentials automatically using the following checks:
6363
* <ol>
64-
* <li>Java System Properties - <code>aws.accessKeyId</code> and <code>aws.secretKey</code></li>
64+
* <li>Java System Properties - <code>aws.accessKeyId</code> and <code>aws.secretAccessKey</code></li>
6565
* <li>Environment Variables - <code>AWS_ACCESS_KEY_ID</code> and <code>AWS_SECRET_ACCESS_KEY</code></li>
6666
* <li>Credential profiles file at the default location (~/.aws/credentials) shared by all AWS SDKs and the AWS CLI</li>
6767
* <li>Credentials delivered through the Amazon EC2 container service if AWS_CONTAINER_CREDENTIALS_RELATIVE_URI

services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/S3ClientConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public interface Builder extends CopyableBuilder<Builder, S3ClientConfiguration>
156156
*
157157
* <p>The default provider will attempt to identify the credentials automatically using the following checks:
158158
* <ol>
159-
* <li>Java System Properties - <code>aws.accessKeyId</code> and <code>aws.secretKey</code></li>
159+
* <li>Java System Properties - <code>aws.accessKeyId</code> and <code>aws.secretAccessKey</code></li>
160160
* <li>Environment Variables - <code>AWS_ACCESS_KEY_ID</code> and <code>AWS_SECRET_ACCESS_KEY</code></li>
161161
* <li>Credential profiles file at the default location (~/.aws/credentials) shared by all AWS SDKs and the AWS CLI</li>
162162
* <li>Credentials delivered through the Amazon EC2 container service if AWS_CONTAINER_CREDENTIALS_RELATIVE_URI

0 commit comments

Comments
 (0)