Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.363.2"
"${LATEST}": "3.363.3"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
1 change: 1 addition & 0 deletions src/Service/BedrockRuntime/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- AWS api-change: Amazon Bedrock Runtime Service Tier Support Launch
- AWS api-change: Bedrock Runtime Reserved Service Support

### Dependency bumped

Expand Down
2 changes: 2 additions & 0 deletions src/Service/BedrockRuntime/src/Enum/ServiceTierType.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ final class ServiceTierType
public const DEFAULT = 'default';
public const FLEX = 'flex';
public const PRIORITY = 'priority';
public const RESERVED = 'reserved';

public static function exists(string $value): bool
{
return isset([
self::DEFAULT => true,
self::FLEX => true,
self::PRIORITY => true,
self::RESERVED => true,
][$value]);
}
}