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.394.11"
"${LATEST}": "3.395.0"
},
"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.5.0

### Added
Expand Down
4 changes: 2 additions & 2 deletions src/Service/S3/src/Input/CopyObjectRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ final class CopyObjectRequest extends Input
private $objectLockEventHold;

/**
* The event hold duration in days to apply to the object copy.
* The event hold duration in days to apply to the object copy. You cannot specify a duration in both days and years.
*
* > This functionality is not supported for directory buckets.
*
Expand All @@ -761,7 +761,7 @@ final class CopyObjectRequest extends Input
private $objectLockEventHoldDurationDays;

/**
* The event hold duration in years to apply to the object copy.
* The event hold duration in years to apply to the object copy. You cannot specify a duration in both days and years.
*
* > This functionality is not supported for directory buckets.
*
Expand Down
6 changes: 4 additions & 2 deletions src/Service/S3/src/Input/CreateMultipartUploadRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,8 @@ final class CreateMultipartUploadRequest extends Input
private $objectLockEventHold;

/**
* Specifies the event hold duration in days to apply to the uploaded object.
* Specifies the event hold duration in days to apply to the uploaded object. You cannot specify a duration in both days
* and years.
*
* > This functionality is not supported for directory buckets.
*
Expand All @@ -535,7 +536,8 @@ final class CreateMultipartUploadRequest extends Input
private $objectLockEventHoldDurationDays;

/**
* Specifies the event hold duration in years to apply to the uploaded object.
* Specifies the event hold duration in years to apply to the uploaded object. You cannot specify a duration in both
* days and years.
*
* > This functionality is not supported for directory buckets.
*
Expand Down
6 changes: 4 additions & 2 deletions src/Service/S3/src/Input/PutObjectRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,8 @@ final class PutObjectRequest extends Input
private $objectLockEventHold;

/**
* Specifies the event hold duration in days to apply to this object.
* Specifies the event hold duration in days to apply to this object. You cannot specify a duration in both days and
* years.
*
* > This functionality is not supported for directory buckets.
*
Expand All @@ -687,7 +688,8 @@ final class PutObjectRequest extends Input
private $objectLockEventHoldDurationDays;

/**
* Specifies the event hold duration in years to apply to this object.
* Specifies the event hold duration in years to apply to this object. You cannot specify a duration in both days and
* years.
*
* > This functionality is not supported for directory buckets.
*
Expand Down
Loading