Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.388.6"
"${LATEST}": "3.388.8"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/S3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Changed

- AWS enhancement: Documentation updates.

## 3.4.0

### Added
Expand Down
5 changes: 4 additions & 1 deletion src/Service/S3/src/Result/CreateBucketOutput.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
class CreateBucketOutput extends Result
{
/**
* A forward slash followed by the name of the bucket.
* A forward slash followed by the name of the bucket for all account regional namespace buckets and all global general
* purpose buckets created in us-east-1. For example, `/amzn-s3-demo-bucket`. For global general purpose buckets created
* in other Amazon Web Services Regions, the Location field is the global endpoint URL. For example,
* `http://amzn-s3-demo-bucket.s3.amazonaws.com/`.
*
* @var string|null
*/
Expand Down
4 changes: 4 additions & 0 deletions src/Service/S3/src/ValueObject/Error.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
namespace AsyncAws\S3\ValueObject;

/**
* > For information about using the Amazon S3 API—including error handling—see the Amazon S3 Developer Guide [^1].
*
* Container for all error elements.
*
* [^1]: https://docs.aws.amazon.com/AmazonS3/latest/developerguide/Welcome.html
*/
final class Error
{
Expand Down
10 changes: 4 additions & 6 deletions src/Service/S3/src/ValueObject/Transition.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,10 @@ final class Transition
private $date;

/**
* Indicates the number of days after creation when objects are transitioned to the specified storage class. If the
* specified storage class is `INTELLIGENT_TIERING`, `GLACIER_IR`, `GLACIER`, or `DEEP_ARCHIVE`, valid values are `0` or
* positive integers. If the specified storage class is `STANDARD_IA` or `ONEZONE_IA`, valid values are positive
* integers greater than `30`. Be aware that some storage classes have a minimum storage duration and that you're
* charged for transitioning objects before their minimum storage duration. For more information, see Constraints and
* considerations for transitions [^1] in the *Amazon S3 User Guide*.
* Indicates the number of days after creation when objects are transitioned to the specified storage class. The value
* can be `0` or any positive integer. Be aware that some storage classes have a minimum storage duration and that
* you're charged for transitioning objects before their minimum storage duration. For more information, see Constraints
* and considerations for transitions [^1] in the *Amazon S3 User Guide*.
*
* [^1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/lifecycle-transition-general-considerations.html#lifecycle-configuration-constraints
*
Expand Down
Loading