-
Notifications
You must be signed in to change notification settings - Fork 916
Enable setting multipart to true/false by defining it as a custom client context parameter #4903
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
a5ad71b
01c5cb9
b3bed43
28c5d37
f843a5d
ca25675
85e3a24
9960c41
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
anirudh9391 marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -241,7 +241,6 @@ | |
"multipartConfigurationClass": "software.amazon.awssdk.services.s3.multipart.MultipartConfiguration", | ||
"multipartConfigMethodDoc": "Configuration for multipart operation of this client.", | ||
"multipartEnableMethodDoc": "Enables automatic conversion of put and copy method to their equivalent multipart operation.", | ||
"contextParamEnabledKey": "S3AsyncClientDecorator.MULTIPART_ENABLED_KEY", | ||
"contextParamConfigKey": "S3AsyncClientDecorator.MULTIPART_CONFIGURATION_KEY" | ||
}, | ||
"interceptors": [ | ||
|
@@ -271,6 +270,10 @@ | |
"CrossRegionAccessEnabled":{ | ||
"documentation":"Enables cross-region bucket access for this client", | ||
"type":"boolean" | ||
}, | ||
"multipartEnabled":{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This also adds the multipart-enable config and method to the sync version of the client, as it adds the method the
I think we should avoid being able to define this config on the sync client and keep it on the async client only |
||
"documentation":"Enables automatic conversion of put and copy method to their equivalent multipart operation.", | ||
"type":"boolean" | ||
} | ||
}, | ||
"endpointAuthSchemeConfig": { | ||
|
@@ -285,4 +288,4 @@ | |
}, | ||
"useSraAuth": true, | ||
"enableGenerateCompiledEndpointRules": true | ||
} | ||
} |
Uh oh!
There was an error while loading. Please reload this page.