File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 22
33## NOT RELEASED
44
5+ ### Added
6+
7+ - AWS api-change: Add support for the Amazon Bedrock Runtime.
8+
59### Changed
610
711- use strict comparison ` null !== ` instead of ` ! `
Original file line number Diff line number Diff line change 2828 },
2929 "extra" : {
3030 "branch-alias" : {
31- "dev-master" : " 3.0 -dev"
31+ "dev-master" : " 3.1 -dev"
3232 }
3333 }
3434}
Original file line number Diff line number Diff line change 44
55final class DataSourceType
66{
7+ public const AMAZON_BEDROCK_RUNTIME = 'AMAZON_BEDROCK_RUNTIME ' ;
78 public const AMAZON_DYNAMODB = 'AMAZON_DYNAMODB ' ;
89 public const AMAZON_ELASTICSEARCH = 'AMAZON_ELASTICSEARCH ' ;
910 public const AMAZON_EVENTBRIDGE = 'AMAZON_EVENTBRIDGE ' ;
@@ -16,6 +17,7 @@ final class DataSourceType
1617 public static function exists (string $ value ): bool
1718 {
1819 return isset ([
20+ self ::AMAZON_BEDROCK_RUNTIME => true ,
1921 self ::AMAZON_DYNAMODB => true ,
2022 self ::AMAZON_ELASTICSEARCH => true ,
2123 self ::AMAZON_EVENTBRIDGE => true ,
You can’t perform that action at this time.
0 commit comments