Skip to content

Commit

Permalink
Updates SDK to v2.1621.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 15, 2024
1 parent 1db6e7e commit 880e811
Show file tree
Hide file tree
Showing 27 changed files with 1,661 additions and 261 deletions.
27 changes: 27 additions & 0 deletions .changes/2.1621.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "feature",
"category": "BedrockAgentRuntime",
"description": "Updating Bedrock Knowledge Base Metadata & Filters feature with two new filters listContains and stringContains"
},
{
"type": "feature",
"category": "CodeBuild",
"description": "CodeBuild Reserved Capacity VPC Support"
},
{
"type": "feature",
"category": "DataSync",
"description": "Task executions now display a CANCELLING status when an execution is in the process of being cancelled."
},
{
"type": "feature",
"category": "Grafana",
"description": "This release adds new ServiceAccount and ServiceAccountToken APIs."
},
{
"type": "feature",
"category": "MedicalImaging",
"description": "Added support for importing medical imaging data from Amazon S3 buckets across accounts and regions."
}
]
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1620.0-->
<!--LATEST=2.1621.0-->
<!--ENTRYINSERT-->

## 2.1621.0
* feature: BedrockAgentRuntime: Updating Bedrock Knowledge Base Metadata & Filters feature with two new filters listContains and stringContains
* feature: CodeBuild: CodeBuild Reserved Capacity VPC Support
* feature: DataSync: Task executions now display a CANCELLING status when an execution is in the process of being cancelled.
* feature: Grafana: This release adds new ServiceAccount and ServiceAccountToken APIs.
* feature: MedicalImaging: Added support for importing medical imaging data from Amazon S3 buckets across accounts and regions.

## 2.1620.0
* 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.
* feature: S3: Updated a few x-id in the http uri traits
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

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

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
6 changes: 6 additions & 0 deletions apis/bedrock-agent-runtime-2023-07-26.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -974,6 +974,9 @@
"lessThanOrEquals": {
"shape": "S3d"
},
"listContains": {
"shape": "S3d"
},
"notEquals": {
"shape": "S3d"
},
Expand All @@ -985,6 +988,9 @@
},
"startsWith": {
"shape": "S3d"
},
"stringContains": {
"shape": "S3d"
}
},
"sensitive": true,
Expand Down
32 changes: 20 additions & 12 deletions apis/bedrock-agent-runtime-2023-07-26.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -1603,50 +1603,58 @@
"members": {
"andAll": {
"shape": "RetrievalFilterList",
"documentation": "<p>Knowledge base data sources whose metadata attributes fulfill all the filter conditions inside this list are returned.</p>"
"documentation": "<p>Knowledge base data sources are returned if their metadata attributes fulfill all the filter conditions inside this list.</p>"
},
"equals": {
"shape": "FilterAttribute",
"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>"
"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>"
},
"greaterThan": {
"shape": "FilterAttribute",
"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>"
"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>"
},
"greaterThanOrEquals": {
"shape": "FilterAttribute",
"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>"
"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>"
},
"in": {
"shape": "FilterAttribute",
"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>"
"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>"
},
"lessThan": {
"shape": "FilterAttribute",
"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>"
"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>"
},
"lessThanOrEquals": {
"shape": "FilterAttribute",
"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>"
"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>"
},
"listContains": {
"shape": "FilterAttribute",
"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>"
},
"notEquals": {
"shape": "FilterAttribute",
"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>"
"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>"
},
"notIn": {
"shape": "FilterAttribute",
"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>"
"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>"
},
"orAll": {
"shape": "RetrievalFilterList",
"documentation": "<p>Knowledge base data sources whose metadata attributes fulfill at least one of the filter conditions inside this list are returned.</p>"
"documentation": "<p>Knowledge base data sources are returned if their metadata attributes fulfill at least one of the filter conditions inside this list.</p>"
},
"startsWith": {
"shape": "FilterAttribute",
"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>"
"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>"
},
"stringContains": {
"shape": "FilterAttribute",
"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>"
}
},
"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>",
"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>",
"sensitive": true,
"union": true
},
Expand Down
15 changes: 15 additions & 0 deletions apis/codebuild-2016-10-06.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"endpointPrefix": "codebuild",
"jsonVersion": "1.1",
"protocol": "json",
"protocols": [
"json"
],
"serviceFullName": "AWS CodeBuild",
"serviceId": "CodeBuild",
"signatureVersion": "v4",
Expand Down Expand Up @@ -284,6 +287,10 @@
"shape": "S47"
},
"overflowBehavior": {},
"vpcConfig": {
"shape": "S1j"
},
"fleetServiceRole": {},
"tags": {
"shape": "S2v"
}
Expand Down Expand Up @@ -1367,6 +1374,10 @@
"shape": "S47"
},
"overflowBehavior": {},
"vpcConfig": {
"shape": "S1j"
},
"fleetServiceRole": {},
"tags": {
"shape": "S2v"
}
Expand Down Expand Up @@ -2135,6 +2146,10 @@
}
},
"overflowBehavior": {},
"vpcConfig": {
"shape": "S1j"
},
"fleetServiceRole": {},
"tags": {
"shape": "S2v"
}
Expand Down

0 comments on commit 880e811

Please sign in to comment.