-
Notifications
You must be signed in to change notification settings - Fork 673
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
add transfer manager doc header #2990
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// Package transfermanager implements the Amazon S3 Transfer Manager, a | ||
// high-level S3 client library. | ||
// | ||
// Package transfermanager is the new iteration of the original | ||
// [feature/s3/manager] module implemented for the AWS SDK Go v2. | ||
// | ||
// # Beta | ||
// | ||
// This module is currently in a BETA release state. It is not subject to the | ||
// same backwards-compatibility guarantees provided by the generally-available | ||
// (GA) AWS SDK for Go v2. Features may be added or removed without warning, | ||
// and APIs may break. | ||
// | ||
// For the current GA transfer manager for AWS SDK Go v2, see | ||
// [feature/s3/manager]. | ||
// | ||
// # Features | ||
// | ||
// Package transfermanager implements a high-level S3 client with support for the | ||
// following: | ||
// - [Client.PutObject] - enhanced object write support w/ automatic | ||
// multipard upload for large objects | ||
lucix-aws marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// | ||
// The package also exposes several opt-in hooks that configure an | ||
// http.Transport that may convey performance/reliability enhancements in | ||
// certain user environments: | ||
// - round-robin DNS ([WithRoundRobinDNS]) | ||
// - multi-NIC dialer ([WithRotoDialer]) | ||
// | ||
// [feature/s3/manager]: https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/feature/s3/manager | ||
package transfermanager |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo: multipart