aws / aws/aws-sdk-java-v2

GZIP Request and Response Configuration

Open
#866 7 comments 26 reactions 0 assignees View on GitHub
feature-request p2
Dominant language
Java
Stars
2.6k
Forks
1k
Avg merge
2d 9h
Merged PRs (30d)
51

Description

Here is how I create a client:
```
AthenaClient
.builder()
.region(Region.of(environment.aws.region))
.credentialsProvider(DefaultCredentialsProvider.create())
.overrideConfiguration {
it.apiCallTimeout(Duration.ofMillis(environment.athena.executionTimeout.toLong()))
// it.gzipEnabled(true)
// it.totalExecutionTimeout(Duration.ofMillis(environment.athena.executionTimeout.toLong()))
}
.build()
```
Previously I could use the `gzipEnabled` property to enable gzip encoding, it is absent now. Can you give me an example of setting it up?

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.