Skip to content

Commit 6d442af

Browse files
Update generated code (#1910)
update generated code
1 parent dd60d2d commit 6d442af

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+828
-101
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.348.1"
3+
"${LATEST}": "3.348.2"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/BedrockRuntime/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Changed
6+
7+
- AWS enhancement: Documentation updates.
8+
59
## 1.1.0
610

711
### Added

src/Service/BedrockRuntime/src/Input/InvokeModelRequest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ final class InvokeModelRequest extends Input
4848
* see Supported Regions and models for cross-region inference [^2] in the Amazon Bedrock User Guide.
4949
* - If you use a provisioned model, specify the ARN of the Provisioned Throughput. For more information, see Run
5050
* inference using a Provisioned Throughput [^3] in the Amazon Bedrock User Guide.
51-
* - If you use a custom model, first purchase Provisioned Throughput for it. Then specify the ARN of the resulting
52-
* provisioned model. For more information, see Use a custom model in Amazon Bedrock [^4] in the Amazon Bedrock User
53-
* Guide.
51+
* - If you use a custom model, specify the ARN of the custom model deployment (for on-demand inference) or the ARN of
52+
* your provisioned model (for Provisioned Throughput). For more information, see Use a custom model in Amazon Bedrock
53+
* [^4] in the Amazon Bedrock User Guide.
5454
* - If you use an imported model [^5], specify the ARN of the imported model. You can get the model ARN from a
5555
* successful call to CreateModelImportJob [^6] or from the Imported models page in the Amazon Bedrock console.
5656
*

src/Service/CloudFormation/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Changed
6+
7+
- AWS enhancement: Documentation updates.
8+
59
## 1.9.0
610

711
### Added

src/Service/CloudFormation/src/Result/DescribeStackDriftDetectionStatusOutput.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ class DescribeStackDriftDetectionStatusOutput extends Result
3333
* or more of its resources have drifted.
3434
* - `NOT_CHECKED`: CloudFormation hasn't checked if the stack differs from its expected template configuration.
3535
* - `IN_SYNC`: The stack's actual configuration matches its expected template configuration.
36-
* - `UNKNOWN`: This value is reserved for future use.
36+
* - `UNKNOWN`: CloudFormation could not run drift detection for a resource in the stack. See the
37+
* `DetectionStatusReason` for details.
3738
*
3839
* @var StackDriftStatus::*|null
3940
*/

src/Service/CloudFormation/src/ValueObject/RollbackConfiguration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace AsyncAws\CloudFormation\ValueObject;
44

55
/**
6-
* Structure containing the rollback triggers for CloudFormation to monitor during stack creation and updating
6+
* Structure that contains the rollback triggers for CloudFormation to monitor during stack creation and updating
77
* operations, and for the specified monitoring period afterwards.
88
*
99
* Rollback triggers enable you to have CloudFormation monitor the state of your application during stack creation and

src/Service/CloudFormation/src/ValueObject/RollbackTrigger.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ final class RollbackTrigger
2424
* The resource type of the rollback trigger. Specify either AWS::CloudWatch::Alarm [^1] or
2525
* AWS::CloudWatch::CompositeAlarm [^2] resource types.
2626
*
27-
* [^1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-alarm.html
28-
* [^2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-compositealarm.html
27+
* [^1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-cloudwatch-alarm.html
28+
* [^2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-cloudwatch-compositealarm.html
2929
*
3030
* @var string
3131
*/

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

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,10 @@ final class Stack
159159
private $enableTerminationProtection;
160160

161161
/**
162-
* For nested stacks--stacks created as resources for another stack--the stack ID of the direct parent of this stack.
163-
* For the first level of nested stacks, the root stack is also the parent stack.
162+
* For nested stacks, the stack ID of the direct parent of this stack. For the first level of nested stacks, the root
163+
* stack is also the parent stack.
164164
*
165-
* For more information, see Embed stacks within other stacks using nested stacks [^1] in the *CloudFormation User
166-
* Guide*.
165+
* For more information, see Nested stacks [^1] in the *CloudFormation User Guide*.
167166
*
168167
* [^1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
169168
*
@@ -172,11 +171,9 @@ final class Stack
172171
private $parentId;
173172

174173
/**
175-
* For nested stacks--stacks created as resources for another stack--the stack ID of the top-level stack to which the
176-
* nested stack ultimately belongs.
174+
* For nested stacks, the stack ID of the top-level stack to which the nested stack ultimately belongs.
177175
*
178-
* For more information, see Embed stacks within other stacks using nested stacks [^1] in the *CloudFormation User
179-
* Guide*.
176+
* For more information, see Nested stacks [^1] in the *CloudFormation User Guide*.
180177
*
181178
* [^1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
182179
*

src/Service/CloudFormation/src/ValueObject/StackDriftInformation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ final class StackDriftInformation
1919
* or more of its resources have drifted.
2020
* - `NOT_CHECKED`: CloudFormation hasn't checked if the stack differs from its expected template configuration.
2121
* - `IN_SYNC`: The stack's actual configuration matches its expected template configuration.
22-
* - `UNKNOWN`: This value is reserved for future use.
22+
* - `UNKNOWN`: CloudFormation could not run drift detection for a resource in the stack.
2323
*
2424
* @var StackDriftStatus::*
2525
*/

src/Service/CloudFormation/src/ValueObject/StackEvent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ final class StackEvent
142142
private $hookFailureMode;
143143

144144
/**
145-
* An optional field containing information about the detailed status of the stack event.
145+
* An optional field that contains information about the detailed status of the stack event.
146146
*
147147
* - `CONFIGURATION_COMPLETE` - all of the resources in the stack have reached that event. For more information, see
148148
* Understand CloudFormation stack creation events [^1] in the *CloudFormation User Guide*.

0 commit comments

Comments
 (0)