Skip to content

Commit 1f28fee

Browse files
Update generated code (#1891)
update generated code
1 parent 748fb4e commit 1f28fee

File tree

5 files changed

+15
-13
lines changed

5 files changed

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

src/Service/Athena/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
- AWS api-change: Added `eu-isoe-west-1` region
88
- AWS api-change: rewrite declaration of regions
99

10+
### Changed
11+
12+
- AWS enhancement: Documentation updates.
13+
1014
### Fixed
1115

1216
- Fix the lowest bound for the `symfony/polyfill-uuid` requirement

src/Service/Athena/src/ValueObject/QueryExecution.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ final class QueryExecution
2626
/**
2727
* The type of query statement that was run. `DDL` indicates DDL query statements. `DML` indicates DML (Data
2828
* Manipulation Language) query statements, such as `CREATE TABLE AS SELECT`. `UTILITY` indicates query statements other
29-
* than DDL and DML, such as `SHOW CREATE TABLE`, or `DESCRIBE TABLE`.
29+
* than DDL and DML, such as `SHOW CREATE TABLE`, `EXPLAIN`, `DESCRIBE`, or `SHOW TABLES`.
3030
*
3131
* @var StatementType::*|null
3232
*/

src/Service/CloudWatchLogs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
### Changed
1111

1212
- Sort exception alphabetically.
13+
- AWS enhancement: Documentation updates.
1314

1415
## 2.6.0
1516

src/Service/CloudWatchLogs/src/CloudWatchLogsClient.php

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -196,24 +196,21 @@ public function describeLogStreams($input = []): DescribeLogStreamsResponse
196196
* nextToken in a subsequent `FilterLogEvents` operation. If the results don't include a `nextToken`, then pagination is
197197
* finished.
198198
*
199-
* > If you set `startFromHead` to `true` and you don’t include `endTime` in your request, you can end up in a
200-
* > situation where the pagination doesn't terminate. This can happen when the new log events are being added to the
201-
* > target log streams faster than they are being read. This situation is a good use case for the CloudWatch Logs Live
202-
* > Tail [^1] feature.
199+
* Specifying the `limit` parameter only guarantees that a single page doesn't return more log events than the specified
200+
* limit, but it might return fewer events than the limit. This is the expected API behavior.
203201
*
204202
* The returned log events are sorted by event timestamp, the timestamp when the event was ingested by CloudWatch Logs,
205203
* and the ID of the `PutLogEvents` request.
206204
*
207205
* If you are using CloudWatch cross-account observability, you can use this operation in a monitoring account and view
208-
* data from the linked source accounts. For more information, see CloudWatch cross-account observability [^2].
206+
* data from the linked source accounts. For more information, see CloudWatch cross-account observability [^1].
209207
*
210-
* > If you are using log transformation [^3], the `FilterLogEvents` operation returns only the original versions of log
211-
* > events, before they were transformed. To view the transformed versions, you must use a CloudWatch Logs query. [^4]
208+
* > If you are using log transformation [^2], the `FilterLogEvents` operation returns only the original versions of log
209+
* > events, before they were transformed. To view the transformed versions, you must use a CloudWatch Logs query. [^3]
212210
*
213-
* [^1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatchLogs_LiveTail.html
214-
* [^2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html
215-
* [^3]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html
216-
* [^4]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AnalyzingLogData.html
211+
* [^1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Unified-Cross-Account.html
212+
* [^2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html
213+
* [^3]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/AnalyzingLogData.html
217214
*
218215
* @see https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_FilterLogEvents.html
219216
* @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-logs-2014-03-28.html#filterlogevents

0 commit comments

Comments
 (0)