pub const DEFAULT_MAX_CONCURRENCY: usize = 10;Expand description
Default cap on concurrent part PUTs when the caller doesn’t set
UploadOptions::max_concurrency. Matches the boto3 / AWS CLI default of 10.
The effective in-flight count is the MIN of this and a memory budget (see
effective_in_flight).