Compression is now supported for operations modeled with the @requestCompression
trait
#3646
Velfi
announced in
Change Log
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
AWS SDK and smithy clients now support the @requestCompression trait. Only operations marked with this trait will be compressed.
Users may configure this behavior:
DISABLE_REQUEST_COMPRESSION=true
.disable_request_compression = true
.aws_config::default(BehaviorVersion::latest()).disable_request_compression(true).load().await
.service::Config::builder().disable_request_compression(true)
.false
REQUEST_MIN_COMPRESSION_SIZE_BYTES=128
.request_min_compression_size_bytes = 128
.aws_config::default(BehaviorVersion::latest()).request_min_compression_size_bytes(128).load().await
.service::Config::builder().request_min_compression_size_bytes(128)
.10240
bytes.Beta Was this translation helpful? Give feedback.
All reactions