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 2
2
3
3
## NOT RELEASED
4
4
5
+ ### Added
6
+
7
+ - AWS api-change: Add support for the Amazon Bedrock Runtime.
8
+
5
9
### Changed
6
10
7
11
- use strict comparison ` null !== ` instead of ` ! `
Original file line number Diff line number Diff line change 28
28
},
29
29
"extra" : {
30
30
"branch-alias" : {
31
- "dev-master" : " 3.0 -dev"
31
+ "dev-master" : " 3.1 -dev"
32
32
}
33
33
}
34
34
}
Original file line number Diff line number Diff line change 4
4
5
5
final class DataSourceType
6
6
{
7
+ public const AMAZON_BEDROCK_RUNTIME = 'AMAZON_BEDROCK_RUNTIME ' ;
7
8
public const AMAZON_DYNAMODB = 'AMAZON_DYNAMODB ' ;
8
9
public const AMAZON_ELASTICSEARCH = 'AMAZON_ELASTICSEARCH ' ;
9
10
public const AMAZON_EVENTBRIDGE = 'AMAZON_EVENTBRIDGE ' ;
@@ -16,6 +17,7 @@ final class DataSourceType
16
17
public static function exists (string $ value ): bool
17
18
{
18
19
return isset ([
20
+ self ::AMAZON_BEDROCK_RUNTIME => true ,
19
21
self ::AMAZON_DYNAMODB => true ,
20
22
self ::AMAZON_ELASTICSEARCH => true ,
21
23
self ::AMAZON_EVENTBRIDGE => true ,
You can’t perform that action at this time.
0 commit comments