Skip to content

Commit 613d9b5

Browse files
Update generated code (#848)
* update generated code * Update src/Service/DynamoDb/CHANGELOG.md Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 7e9488d commit 613d9b5

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- AWS api-change: This release adds a new ReplicaStatus REGION DISABLED for the Table description. This state indicates that the AWS Region for the replica is inaccessible because the AWS Region is disabled.
8+
- AWS api-change: This release adds a new ReplicaStatus INACCESSIBLE_ENCRYPTION_CREDENTIALS for the Table description, indicating when a key used to encrypt a regional replica table is not accessible.
89

910
## 0.3.1
1011

src/Enum/ReplicaStatus.php

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ final class ReplicaStatus
88
public const CREATING = 'CREATING';
99
public const CREATION_FAILED = 'CREATION_FAILED';
1010
public const DELETING = 'DELETING';
11+
public const INACCESSIBLE_ENCRYPTION_CREDENTIALS = 'INACCESSIBLE_ENCRYPTION_CREDENTIALS';
1112
public const REGION_DISABLED = 'REGION_DISABLED';
1213
public const UPDATING = 'UPDATING';
1314

@@ -18,6 +19,7 @@ public static function exists(string $value): bool
1819
self::CREATING => true,
1920
self::CREATION_FAILED => true,
2021
self::DELETING => true,
22+
self::INACCESSIBLE_ENCRYPTION_CREDENTIALS => true,
2123
self::REGION_DISABLED => true,
2224
self::UPDATING => true,
2325
][$value]);

0 commit comments

Comments
 (0)