Skip to content

Commit b1fb4df

Browse files
Update generated code (#1888)
update generated code
1 parent 9cb927f commit b1fb4df

File tree

7 files changed

+10
-7
lines changed

7 files changed

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

src/Service/CloudWatchLogs/CHANGELOG.md

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

77
- AWS api-change: Added `eu-isoe-west-1` region
8+
- AWS api-change: CloudWatch Logs supports "DELIVERY" log class. This log class is used only for delivering AWS Lambda logs to Amazon S3 or Amazon Data Firehose.
89

910
### Changed
1011

src/Service/CloudWatchLogs/src/CloudWatchLogsClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ public function filterLogEvents($input = []): FilterLogEventsResponse
268268
* Tools for PowerShell and the Amazon Web Services SDK for .NET, the timestamp is specified in .NET format:
269269
* `yyyy-mm-ddThh:mm:ss`. For example, `2017-09-15T13:45:30`.)
270270
* - A batch of log events in a single request cannot span more than 24 hours. Otherwise, the operation fails.
271-
* - Each log event can be no larger than 256 KB.
271+
* - Each log event can be no larger than 1 MB.
272272
* - The maximum number of log events in a batch is 10,000.
273273
* -
274274
* - ! The quota of five requests per second per log stream has been removed. Instead, `PutLogEvents` actions are

src/Service/CloudWatchLogs/src/Enum/LogGroupClass.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44

55
final class LogGroupClass
66
{
7+
public const DELIVERY = 'DELIVERY';
78
public const INFREQUENT_ACCESS = 'INFREQUENT_ACCESS';
89
public const STANDARD = 'STANDARD';
910

1011
public static function exists(string $value): bool
1112
{
1213
return isset([
14+
self::DELIVERY => true,
1315
self::INFREQUENT_ACCESS => true,
1416
self::STANDARD => true,
1517
][$value]);

src/Service/CloudWatchLogs/src/Input/CreateLogGroupRequest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,13 @@ final class CreateLogGroupRequest extends Input
4646
private $tags;
4747

4848
/**
49-
* Use this parameter to specify the log group class for this log group. There are two classes:
49+
* Use this parameter to specify the log group class for this log group. There are three classes:
5050
*
5151
* - The `Standard` log class supports all CloudWatch Logs features.
5252
* - The `Infrequent Access` log class supports a subset of CloudWatch Logs features and incurs lower costs.
53+
* - Use the `Delivery` log class only for delivering Lambda logs to store in Amazon S3 or Amazon Data Firehose. Log
54+
* events in log groups in the Delivery class are kept in CloudWatch Logs for only one day. This log class doesn't
55+
* offer rich CloudWatch Logs capabilities such as CloudWatch Logs Insights queries.
5356
*
5457
* If you omit this parameter, the default of `STANDARD` is used.
5558
*

src/Service/CloudWatchLogs/src/ValueObject/InputLogEvent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ final class InputLogEvent
1818
private $timestamp;
1919

2020
/**
21-
* The raw event message. Each log event can be no larger than 256 KB.
21+
* The raw event message. Each log event can be no larger than 1 MB.
2222
*
2323
* @var string
2424
*/

src/Service/Ecr/src/Result/GetAuthorizationTokenResponse.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ class GetAuthorizationTokenResponse extends Result
1111
/**
1212
* A list of authorization token data objects that correspond to the `registryIds` values in the request.
1313
*
14-
* > The size of the authorization token returned by Amazon ECR is not fixed. We recommend that you don't make
15-
* > assumptions about the maximum size.
16-
*
1714
* @var AuthorizationData[]
1815
*/
1916
private $authorizationData;

0 commit comments

Comments
 (0)