Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9410e68

Browse files
update generated code (async-aws#1158)
1 parent c138284 commit 9410e68

5 files changed

Lines changed: 7 additions & 4 deletions

File tree

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

src/Service/ElastiCache/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- AWS api-change: Added `us-fips` regions
99
- AWS api-change: Use specific configuration for `us` regions
1010
- AWS enhancement: Documentation updates.
11+
- AWS api-change: AWS ElastiCache for Redis has added a new Engine Log LogType in LogDelivery feature. You can now publish the Engine Log from your Amazon ElastiCache for Redis clusters to Amazon CloudWatch Logs and Amazon Kinesis Data Firehose.
1112

1213
## 0.1.0
1314

src/Service/ElastiCache/src/Enum/LogType.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@
33
namespace AsyncAws\ElastiCache\Enum;
44

55
/**
6-
* Refers to slow-log.
6+
* Refers to slow-log or engine-log..
77
*
88
* @see https://redis.io/commands/slowlog
99
*/
1010
final class LogType
1111
{
12+
public const ENGINE_LOG = 'engine-log';
1213
public const SLOW_LOG = 'slow-log';
1314

1415
public static function exists(string $value): bool
1516
{
1617
return isset([
18+
self::ENGINE_LOG => true,
1719
self::SLOW_LOG => true,
1820
][$value]);
1921
}

src/Service/ElastiCache/src/ValueObject/LogDeliveryConfiguration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
final class LogDeliveryConfiguration
1414
{
1515
/**
16-
* Refers to slow-log.
16+
* Refers to slow-log or engine-log.
1717
*
1818
* @see https://redis.io/commands/slowlog
1919
*/

src/Service/ElastiCache/src/ValueObject/PendingLogDeliveryConfiguration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
final class PendingLogDeliveryConfiguration
1313
{
1414
/**
15-
* Refers to slow-log.
15+
* Refers to slow-log or engine-log..
1616
*
1717
* @see https://redis.io/commands/slowlog
1818
*/

0 commit comments

Comments
 (0)