Skip to content

Commit

Permalink
try 2.21.46
Browse files Browse the repository at this point in the history
  • Loading branch information
texastony committed Oct 24, 2024
1 parent 3a50cc8 commit d133ddc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.release>8</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<aws.java.sdk.version>2.20.162</aws.java.sdk.version>
<aws.java.sdk.version>2.21.46</aws.java.sdk.version>
<aws.java.crt.version>0.29.24</aws.java.crt.version>
<com.amazonaws.version>1.12.441</com.amazonaws.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -706,11 +706,11 @@ public Builder disableMultiRegionAccessPoints(Boolean disableMultiRegionAccessPo
return this;
}

// @Override
// public S3AsyncClientBuilder disableS3ExpressSessionAuth(Boolean disableS3ExpressSessionAuth) {
// _disableS3ExpressSessionAuth = disableS3ExpressSessionAuth;
// return this;
// }
@Override
public S3AsyncClientBuilder disableS3ExpressSessionAuth(Boolean disableS3ExpressSessionAuth) {
_disableS3ExpressSessionAuth = disableS3ExpressSessionAuth;
return this;
}

/**
* Forces this client to use path-style addressing for buckets.
Expand Down Expand Up @@ -791,7 +791,7 @@ public S3AsyncEncryptionClient build() {
.serviceConfiguration(_serviceConfiguration)
.accelerate(_accelerate)
.disableMultiRegionAccessPoints(_disableMultiRegionAccessPoints)
// .disableS3ExpressSessionAuth(_disableS3ExpressSessionAuth)
.disableS3ExpressSessionAuth(_disableS3ExpressSessionAuth)
.forcePathStyle(_forcePathStyle)
.useArnRegion(_useArnRegion)
.crossRegionAccessEnabled(_crossRegionAccessEnabled)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -926,11 +926,11 @@ public Builder disableMultiRegionAccessPoints(Boolean disableMultiRegionAccessPo
*
* @param disableS3ExpressSessionAuth
*/
// @Override
// public Builder disableS3ExpressSessionAuth(Boolean disableS3ExpressSessionAuth) {
// _disableS3ExpressSessionAuth = disableS3ExpressSessionAuth;
// return this;
// }
@Override
public Builder disableS3ExpressSessionAuth(Boolean disableS3ExpressSessionAuth) {
_disableS3ExpressSessionAuth = disableS3ExpressSessionAuth;
return this;
}

/**
* Forces this client to use path-style addressing for buckets.
Expand Down Expand Up @@ -1077,7 +1077,7 @@ public S3EncryptionClient build() {
.useArnRegion(_useArnRegion)
.httpClient(_httpClient)
.httpClientBuilder(_httpClientBuilder)
// .disableS3ExpressSessionAuth(_disableS3ExpressSessionAuth)
.disableS3ExpressSessionAuth(_disableS3ExpressSessionAuth)
.crossRegionAccessEnabled(_crossRegionAccessEnabled)
.build();
}
Expand All @@ -1097,7 +1097,7 @@ public S3EncryptionClient build() {
.useArnRegion(_useArnRegion)
.httpClient(_asyncHttpClient)
.httpClientBuilder(_asyncHttpClientBuilder)
// .disableS3ExpressSessionAuth(_disableS3ExpressSessionAuth)
.disableS3ExpressSessionAuth(_disableS3ExpressSessionAuth)
.crossRegionAccessEnabled(_crossRegionAccessEnabled)
// TODO: Add MPU stuff here too
.build();
Expand Down

0 comments on commit d133ddc

Please sign in to comment.