You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to configure AWS to use AWS_REQUEST_CHECKSUM_CALCULATION=WHEN_REQUIRED. AWS storage is (optionally) used by a library, which is an implementation detail, so we'd like to avoid requiring everyone who run binaries that use the library to change their environment. For that reason we currently use:
Thanks. I think I missed these because I was looing at aws_config::ConfigLoader, which we are currently using. Is it possible to configure these settings using the ConfigLoader? The docs for aws_types::sdk_config::Builder say:
Important: Using the aws-config crate to configure the SDK is preferred to invoking this builder directly. Using this builder directly won’t pull in any AWS recommended default configuration values.
We need to configure AWS to use
AWS_REQUEST_CHECKSUM_CALCULATION=WHEN_REQUIRED
. AWS storage is (optionally) used by a library, which is an implementation detail, so we'd like to avoid requiring everyone who run binaries that use the library to change their environment. For that reason we currently use:but that is error-prone, affects the whole process, and will become unsafe in the next Rust edition.
Is there a way to do it programmatically? For example, something like
request_checksum_calculation
in Python'sbotocore.config.Config
.The text was updated successfully, but these errors were encountered: