We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5212c7 commit 7c1f3f4Copy full SHA for 7c1f3f4
CHANGELOG.md
@@ -5,6 +5,7 @@
5
### Added
6
7
- AWS api-change: Amazon Bedrock Runtime Service Tier Support Launch
8
+- AWS api-change: Bedrock Runtime Reserved Service Support
9
10
### Dependency bumped
11
src/Enum/ServiceTierType.php
@@ -7,13 +7,15 @@ final class ServiceTierType
public const DEFAULT = 'default';
public const FLEX = 'flex';
public const PRIORITY = 'priority';
+ public const RESERVED = 'reserved';
12
public static function exists(string $value): bool
13
{
14
return isset([
15
self::DEFAULT => true,
16
self::FLEX => true,
17
self::PRIORITY => true,
18
+ self::RESERVED => true,
19
][$value]);
20
}
21
0 commit comments