Skip to content

Commit 880e811

Browse files
author
awstools
committed
Updates SDK to v2.1621.0
1 parent 1db6e7e commit 880e811

27 files changed

+1661
-261
lines changed

Diff for: .changes/2.1621.0.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "BedrockAgentRuntime",
5+
"description": "Updating Bedrock Knowledge Base Metadata & Filters feature with two new filters listContains and stringContains"
6+
},
7+
{
8+
"type": "feature",
9+
"category": "CodeBuild",
10+
"description": "CodeBuild Reserved Capacity VPC Support"
11+
},
12+
{
13+
"type": "feature",
14+
"category": "DataSync",
15+
"description": "Task executions now display a CANCELLING status when an execution is in the process of being cancelled."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "Grafana",
20+
"description": "This release adds new ServiceAccount and ServiceAccountToken APIs."
21+
},
22+
{
23+
"type": "feature",
24+
"category": "MedicalImaging",
25+
"description": "Added support for importing medical imaging data from Amazon S3 buckets across accounts and regions."
26+
}
27+
]

Diff for: CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1620.0-->
2+
<!--LATEST=2.1621.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1621.0
6+
* feature: BedrockAgentRuntime: Updating Bedrock Knowledge Base Metadata & Filters feature with two new filters listContains and stringContains
7+
* feature: CodeBuild: CodeBuild Reserved Capacity VPC Support
8+
* feature: DataSync: Task executions now display a CANCELLING status when an execution is in the process of being cancelled.
9+
* feature: Grafana: This release adds new ServiceAccount and ServiceAccountToken APIs.
10+
* feature: MedicalImaging: Added support for importing medical imaging data from Amazon S3 buckets across accounts and regions.
11+
512
## 2.1620.0
613
* feature: Connect: Amazon Connect provides enhanced search capabilities for flows & flow modules on the Connect admin website and programmatically using APIs. You can search for flows and flow modules by name, description, type, status, and tags, to filter and identify a specific flow in your Connect instances.
714
* feature: S3: Updated a few x-id in the http uri traits

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
6464
To use the SDK in the browser, simply add the following script tag to your
6565
HTML pages:
6666

67-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1620.0.min.js"></script>
67+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1621.0.min.js"></script>
6868

6969
You can also build a custom browser SDK with your specified set of AWS services.
7070
This can allow you to reduce the SDK's size, specify different API versions of

Diff for: apis/bedrock-agent-runtime-2023-07-26.min.json

+6
Original file line numberDiff line numberDiff line change
@@ -974,6 +974,9 @@
974974
"lessThanOrEquals": {
975975
"shape": "S3d"
976976
},
977+
"listContains": {
978+
"shape": "S3d"
979+
},
977980
"notEquals": {
978981
"shape": "S3d"
979982
},
@@ -985,6 +988,9 @@
985988
},
986989
"startsWith": {
987990
"shape": "S3d"
991+
},
992+
"stringContains": {
993+
"shape": "S3d"
988994
}
989995
},
990996
"sensitive": true,

Diff for: apis/bedrock-agent-runtime-2023-07-26.normal.json

+20-12
Original file line numberDiff line numberDiff line change
@@ -1603,50 +1603,58 @@
16031603
"members": {
16041604
"andAll": {
16051605
"shape": "RetrievalFilterList",
1606-
"documentation": "<p>Knowledge base data sources whose metadata attributes fulfill all the filter conditions inside this list are returned.</p>"
1606+
"documentation": "<p>Knowledge base data sources are returned if their metadata attributes fulfill all the filter conditions inside this list.</p>"
16071607
},
16081608
"equals": {
16091609
"shape": "FilterAttribute",
1610-
"documentation": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value matches the <code>value</code> in this object are returned.</p>"
1610+
"documentation": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value matches the <code>value</code> in this object.</p> <p>The following example would return data sources with an <code>animal</code> attribute whose value is <code>cat</code>:</p> <p> <code>\"equals\": { \"key\": \"animal\", \"value\": \"cat\" }</code> </p>"
16111611
},
16121612
"greaterThan": {
16131613
"shape": "FilterAttribute",
1614-
"documentation": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value is greater than the <code>value</code> in this object are returned.</p>"
1614+
"documentation": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is greater than the <code>value</code> in this object.</p> <p>The following example would return data sources with an <code>year</code> attribute whose value is greater than <code>1989</code>:</p> <p> <code>\"greaterThan\": { \"key\": \"year\", \"value\": 1989 }</code> </p>"
16151615
},
16161616
"greaterThanOrEquals": {
16171617
"shape": "FilterAttribute",
1618-
"documentation": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value is greater than or equal to the <code>value</code> in this object are returned.</p>"
1618+
"documentation": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is greater than or equal to the <code>value</code> in this object.</p> <p>The following example would return data sources with an <code>year</code> attribute whose value is greater than or equal to <code>1989</code>:</p> <p> <code>\"greaterThanOrEquals\": { \"key\": \"year\", \"value\": 1989 }</code> </p>"
16191619
},
16201620
"in": {
16211621
"shape": "FilterAttribute",
1622-
"documentation": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value is in the list specified in the <code>value</code> in this object are returned.</p>"
1622+
"documentation": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is in the list specified in the <code>value</code> in this object.</p> <p>The following example would return data sources with an <code>animal</code> attribute that is either <code>cat</code> or <code>dog</code>:</p> <p> <code>\"in\": { \"key\": \"animal\", \"value\": [\"cat\", \"dog\"] }</code> </p>"
16231623
},
16241624
"lessThan": {
16251625
"shape": "FilterAttribute",
1626-
"documentation": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value is less than the <code>value</code> in this object are returned.</p>"
1626+
"documentation": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is less than the <code>value</code> in this object.</p> <p>The following example would return data sources with an <code>year</code> attribute whose value is less than to <code>1989</code>.</p> <p> <code>\"lessThan\": { \"key\": \"year\", \"value\": 1989 }</code> </p>"
16271627
},
16281628
"lessThanOrEquals": {
16291629
"shape": "FilterAttribute",
1630-
"documentation": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value is less than or equal to the <code>value</code> in this object are returned.</p>"
1630+
"documentation": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is less than or equal to the <code>value</code> in this object.</p> <p>The following example would return data sources with an <code>year</code> attribute whose value is less than or equal to <code>1989</code>.</p> <p> <code>\"lessThanOrEquals\": { \"key\": \"year\", \"value\": 1989 }</code> </p>"
1631+
},
1632+
"listContains": {
1633+
"shape": "FilterAttribute",
1634+
"documentation": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is a list that contains the <code>value</code> as one of its members.</p> <p>The following example would return data sources with an <code>animals</code> attribute that is a list containing a <code>cat</code> member (for example <code>[\"dog\", \"cat\"]</code>).</p> <p> <code>\"listContains\": { \"key\": \"animals\", \"value\": \"cat\" }</code> </p>"
16311635
},
16321636
"notEquals": {
16331637
"shape": "FilterAttribute",
1634-
"documentation": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value doesn't match the <code>value</code> in this object are returned.</p>"
1638+
"documentation": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value doesn't match the <code>value</code> in this object are returned.</p> <p>The following example would return data sources that don't contain an <code>animal</code> attribute whose value is <code>cat</code>.</p> <p> <code>\"notEquals\": { \"key\": \"animal\", \"value\": \"cat\" }</code> </p>"
16351639
},
16361640
"notIn": {
16371641
"shape": "FilterAttribute",
1638-
"documentation": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value isn't in the list specified in the <code>value</code> in this object are returned.</p>"
1642+
"documentation": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value isn't in the list specified in the <code>value</code> in this object.</p> <p>The following example would return data sources whose <code>animal</code> attribute is neither <code>cat</code> nor <code>dog</code>.</p> <p> <code>\"notIn\": { \"key\": \"animal\", \"value\": [\"cat\", \"dog\"] }</code> </p>"
16391643
},
16401644
"orAll": {
16411645
"shape": "RetrievalFilterList",
1642-
"documentation": "<p>Knowledge base data sources whose metadata attributes fulfill at least one of the filter conditions inside this list are returned.</p>"
1646+
"documentation": "<p>Knowledge base data sources are returned if their metadata attributes fulfill at least one of the filter conditions inside this list.</p>"
16431647
},
16441648
"startsWith": {
16451649
"shape": "FilterAttribute",
1646-
"documentation": "<p>Knowledge base data sources that contain a metadata attribute whose name matches the <code>key</code> and whose value starts with the <code>value</code> in this object are returned. This filter is currently only supported for Amazon OpenSearch Serverless vector stores.</p>"
1650+
"documentation": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value starts with the <code>value</code> in this object. This filter is currently only supported for Amazon OpenSearch Serverless vector stores.</p> <p>The following example would return data sources with an <code>animal</code> attribute starts with <code>ca</code> (for example, <code>cat</code> or <code>camel</code>).</p> <p> <code>\"startsWith\": { \"key\": \"animal\", \"value\": \"ca\" }</code> </p>"
1651+
},
1652+
"stringContains": {
1653+
"shape": "FilterAttribute",
1654+
"documentation": "<p>Knowledge base data sources are returned if they contain a metadata attribute whose name matches the <code>key</code> and whose value is one of the following:</p> <ul> <li> <p>A string that contains the <code>value</code> as a substring. The following example would return data sources with an <code>animal</code> attribute that contains the substring <code>at</code> (for example <code>cat</code>).</p> <p> <code>\"stringContains\": { \"key\": \"animal\", \"value\": \"at\" }</code> </p> </li> <li> <p>A list with a member that contains the <code>value</code> as a substring. The following example would return data sources with an <code>animals</code> attribute that is a list containing a member that contains the substring <code>at</code> (for example <code>[\"dog\", \"cat\"]</code>).</p> <p> <code>\"stringContains\": { \"key\": \"animals\", \"value\": \"at\" }</code> </p> </li> </ul>"
16471655
}
16481656
},
1649-
"documentation": "<p>Specifies the filters to use on the metadata attributes in the knowledge base data sources before returning results. For more information, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/kb-test-config.html\">Query configurations</a>.</p> <p>This data type is used in the following API operations:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_Retrieve.html#API_agent-runtime_Retrieve_RequestSyntax\">Retrieve request</a> – in the <code>filter</code> field</p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_RetrieveAndGenerate.html#API_agent-runtime_RetrieveAndGenerate_RequestSyntax\">RetrieveAndGenerate request</a> – in the <code>filter</code> field</p> </li> </ul>",
1657+
"documentation": "<p>Specifies the filters to use on the metadata attributes in the knowledge base data sources before returning results. For more information, see <a href=\"https://docs.aws.amazon.com/bedrock/latest/userguide/kb-test-config.html\">Query configurations</a>. See the examples below to see how to use these filters.</p> <p>This data type is used in the following API operations:</p> <ul> <li> <p> <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_Retrieve.html#API_agent-runtime_Retrieve_RequestSyntax\">Retrieve request</a> – in the <code>filter</code> field</p> </li> <li> <p> <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent-runtime_RetrieveAndGenerate.html#API_agent-runtime_RetrieveAndGenerate_RequestSyntax\">RetrieveAndGenerate request</a> – in the <code>filter</code> field</p> </li> </ul>",
16501658
"sensitive": true,
16511659
"union": true
16521660
},

Diff for: apis/codebuild-2016-10-06.min.json

+15
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
"endpointPrefix": "codebuild",
66
"jsonVersion": "1.1",
77
"protocol": "json",
8+
"protocols": [
9+
"json"
10+
],
811
"serviceFullName": "AWS CodeBuild",
912
"serviceId": "CodeBuild",
1013
"signatureVersion": "v4",
@@ -284,6 +287,10 @@
284287
"shape": "S47"
285288
},
286289
"overflowBehavior": {},
290+
"vpcConfig": {
291+
"shape": "S1j"
292+
},
293+
"fleetServiceRole": {},
287294
"tags": {
288295
"shape": "S2v"
289296
}
@@ -1367,6 +1374,10 @@
13671374
"shape": "S47"
13681375
},
13691376
"overflowBehavior": {},
1377+
"vpcConfig": {
1378+
"shape": "S1j"
1379+
},
1380+
"fleetServiceRole": {},
13701381
"tags": {
13711382
"shape": "S2v"
13721383
}
@@ -2135,6 +2146,10 @@
21352146
}
21362147
},
21372148
"overflowBehavior": {},
2149+
"vpcConfig": {
2150+
"shape": "S1j"
2151+
},
2152+
"fleetServiceRole": {},
21382153
"tags": {
21392154
"shape": "S2v"
21402155
}

0 commit comments

Comments
 (0)