Skip to content

Commit d299d19

Browse files
Update generated code (#1569)
update generated code
1 parent 419dab4 commit d299d19

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.281.1"
3+
"${LATEST}": "3.281.7"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/CloudFormation/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Changed
66

77
- Allow passing explicit null values for optional fields of input objects
8+
- AWS enhancement: Documentation updates.
89

910
## 1.5.0
1011

src/Service/CloudFormation/src/Input/DescribeStacksInput.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ final class DescribeStacksInput extends Input
1313
{
1414
/**
1515
* > If you don't pass a parameter to `StackName`, the API returns a response that describes all resources in the
16-
* > account. This requires `ListStacks` and `DescribeStacks` permissions.
16+
* > account, which can impact performance. This requires `ListStacks` and `DescribeStacks` permissions.
17+
* >
18+
* > Consider using the ListStacks API if you're not passing a parameter to `StackName`.
1719
* >
1820
* > The IAM policy below can be added to IAM policies when you want to limit resource-level permissions and avoid
1921
* > returning a response when no parameter is sent in the request:

src/Service/CloudFormation/src/ValueObject/Stack.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,10 @@ final class Stack
191191
private $driftInformation;
192192

193193
/**
194-
* This deletion policy deletes newly created resources, but retains existing resources, when a stack operation is
195-
* rolled back. This ensures new, empty, and unused resources are deleted, while critical resources and their data are
196-
* retained. `RetainExceptOnCreate` can be specified for any resource that supports the DeletionPolicy [^1] attribute.
194+
* When set to `true`, newly created resources are deleted when the operation rolls back. This includes newly created
195+
* resources marked with a deletion policy of `Retain`.
197196
*
198-
* [^1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html
197+
* Default: `false`
199198
*
200199
* @var bool|null
201200
*/

0 commit comments

Comments
 (0)