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.356.28"
"${LATEST}": "3.356.31"
},
"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/CloudFormation/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.

## 1.10.0

### Added
Expand Down
7 changes: 3 additions & 4 deletions src/Service/CloudFormation/src/ValueObject/Tag.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,15 @@
final class Tag
{
/**
* *Required*. A string used to identify this tag. You can specify a maximum of 128 characters for a tag key. Tags owned
* by Amazon Web Services have the reserved prefix: `aws:`.
* A string used to identify this tag. You can specify a maximum of 128 characters for a tag key. Tags owned by Amazon
* Web Services have the reserved prefix: `aws:`.
*
* @var string
*/
private $key;

/**
* *Required*. A string that contains the value for this tag. You can specify a maximum of 256 characters for a tag
* value.
* A string that contains the value for this tag. You can specify a maximum of 256 characters for a tag value.
*
* @var string
*/
Expand Down
Loading