File tree Expand file tree Collapse file tree 7 files changed +10
-7
lines changed Expand file tree Collapse file tree 7 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 44
55final 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 ]);
Original file line number Diff line number Diff 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 *
Original file line number Diff line number Diff 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 */
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments