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.343.0"
"${LATEST}": "3.343.1"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
1 change: 1 addition & 0 deletions src/Service/CloudWatchLogs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- AWS api-change: Added `eu-isoe-west-1` region
- 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.

### Changed

Expand Down
2 changes: 1 addition & 1 deletion src/Service/CloudWatchLogs/src/CloudWatchLogsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public function filterLogEvents($input = []): FilterLogEventsResponse
* Tools for PowerShell and the Amazon Web Services SDK for .NET, the timestamp is specified in .NET format:
* `yyyy-mm-ddThh:mm:ss`. For example, `2017-09-15T13:45:30`.)
* - A batch of log events in a single request cannot span more than 24 hours. Otherwise, the operation fails.
* - Each log event can be no larger than 256 KB.
* - Each log event can be no larger than 1 MB.
* - The maximum number of log events in a batch is 10,000.
* -
* - ! The quota of five requests per second per log stream has been removed. Instead, `PutLogEvents` actions are
Expand Down
2 changes: 2 additions & 0 deletions src/Service/CloudWatchLogs/src/Enum/LogGroupClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@

final class LogGroupClass
{
public const DELIVERY = 'DELIVERY';
public const INFREQUENT_ACCESS = 'INFREQUENT_ACCESS';
public const STANDARD = 'STANDARD';

public static function exists(string $value): bool
{
return isset([
self::DELIVERY => true,
self::INFREQUENT_ACCESS => true,
self::STANDARD => true,
][$value]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,13 @@ final class CreateLogGroupRequest extends Input
private $tags;

/**
* Use this parameter to specify the log group class for this log group. There are two classes:
* Use this parameter to specify the log group class for this log group. There are three classes:
*
* - The `Standard` log class supports all CloudWatch Logs features.
* - The `Infrequent Access` log class supports a subset of CloudWatch Logs features and incurs lower costs.
* - Use the `Delivery` log class only for delivering Lambda logs to store in Amazon S3 or Amazon Data Firehose. Log
* events in log groups in the Delivery class are kept in CloudWatch Logs for only one day. This log class doesn't
* offer rich CloudWatch Logs capabilities such as CloudWatch Logs Insights queries.
*
* If you omit this parameter, the default of `STANDARD` is used.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ final class InputLogEvent
private $timestamp;

/**
* The raw event message. Each log event can be no larger than 256 KB.
* The raw event message. Each log event can be no larger than 1 MB.
*
* @var string
*/
Expand Down
3 changes: 0 additions & 3 deletions src/Service/Ecr/src/Result/GetAuthorizationTokenResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ class GetAuthorizationTokenResponse extends Result
/**
* A list of authorization token data objects that correspond to the `registryIds` values in the request.
*
* > The size of the authorization token returned by Amazon ECR is not fixed. We recommend that you don't make
* > assumptions about the maximum size.
*
* @var AuthorizationData[]
*/
private $authorizationData;
Expand Down