File tree 7 files changed +10
-7
lines changed
7 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"variables" : {
3
- "${LATEST}" : " 3.343.0 "
3
+ "${LATEST}" : " 3.343.1 "
4
4
},
5
5
"endpoints" : " https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json" ,
6
6
"services" : {
Original file line number Diff line number Diff line change 5
5
### Added
6
6
7
7
- 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.
8
9
9
10
### Changed
10
11
Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ public function filterLogEvents($input = []): FilterLogEventsResponse
268
268
* Tools for PowerShell and the Amazon Web Services SDK for .NET, the timestamp is specified in .NET format:
269
269
* `yyyy-mm-ddThh:mm:ss`. For example, `2017-09-15T13:45:30`.)
270
270
* - 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 .
272
272
* - The maximum number of log events in a batch is 10,000.
273
273
* -
274
274
* - ! The quota of five requests per second per log stream has been removed. Instead, `PutLogEvents` actions are
Original file line number Diff line number Diff line change 4
4
5
5
final class LogGroupClass
6
6
{
7
+ public const DELIVERY = 'DELIVERY ' ;
7
8
public const INFREQUENT_ACCESS = 'INFREQUENT_ACCESS ' ;
8
9
public const STANDARD = 'STANDARD ' ;
9
10
10
11
public static function exists (string $ value ): bool
11
12
{
12
13
return isset ([
14
+ self ::DELIVERY => true ,
13
15
self ::INFREQUENT_ACCESS => true ,
14
16
self ::STANDARD => true ,
15
17
][$ value ]);
Original file line number Diff line number Diff line change @@ -46,10 +46,13 @@ final class CreateLogGroupRequest extends Input
46
46
private $ tags ;
47
47
48
48
/**
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:
50
50
*
51
51
* - The `Standard` log class supports all CloudWatch Logs features.
52
52
* - 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.
53
56
*
54
57
* If you omit this parameter, the default of `STANDARD` is used.
55
58
*
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ final class InputLogEvent
18
18
private $ timestamp ;
19
19
20
20
/**
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 .
22
22
*
23
23
* @var string
24
24
*/
Original file line number Diff line number Diff line change @@ -11,9 +11,6 @@ class GetAuthorizationTokenResponse extends Result
11
11
/**
12
12
* A list of authorization token data objects that correspond to the `registryIds` values in the request.
13
13
*
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
- *
17
14
* @var AuthorizationData[]
18
15
*/
19
16
private $ authorizationData ;
You can’t perform that action at this time.
0 commit comments