Skip to content

Commit

Permalink
Updates SDK to v2.1465.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Sep 26, 2023
1 parent f05ae33 commit f9df3e3
Show file tree
Hide file tree
Showing 39 changed files with 3,097 additions and 1,035 deletions.
37 changes: 37 additions & 0 deletions .changes/2.1465.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[
{
"type": "feature",
"category": "AppIntegrations",
"description": "The Amazon AppIntegrations service adds a set of APIs (in preview) to manage third party applications to be used in Amazon Connect agent workspace."
},
{
"type": "feature",
"category": "AppRunner",
"description": "This release allows an App Runner customer to specify a custom source directory to run the build & start command. This change allows App Runner to support monorepo based repositories"
},
{
"type": "feature",
"category": "Connect",
"description": "This release updates a set of Amazon Connect APIs that provides the ability to integrate third party applications in the Amazon Connect agent workspace."
},
{
"type": "feature",
"category": "DynamoDB",
"description": "Amazon DynamoDB now supports Incremental Export as an enhancement to the existing Export Table"
},
{
"type": "feature",
"category": "EC2",
"description": "The release includes AWS verified access to support FIPs compliance in North America regions"
},
{
"type": "feature",
"category": "LakeFormation",
"description": "This release adds three new API support \"CreateLakeFormationOptIn\", \"DeleteLakeFormationOptIn\" and \"ListLakeFormationOptIns\", and also updates the corresponding documentation."
},
{
"type": "feature",
"category": "S3",
"description": "This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK."
}
]
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1464.0-->
<!--LATEST=2.1465.0-->
<!--ENTRYINSERT-->

## 2.1465.0
* feature: AppIntegrations: The Amazon AppIntegrations service adds a set of APIs (in preview) to manage third party applications to be used in Amazon Connect agent workspace.
* feature: AppRunner: This release allows an App Runner customer to specify a custom source directory to run the build & start command. This change allows App Runner to support monorepo based repositories
* feature: Connect: This release updates a set of Amazon Connect APIs that provides the ability to integrate third party applications in the Amazon Connect agent workspace.
* feature: DynamoDB: Amazon DynamoDB now supports Incremental Export as an enhancement to the existing Export Table
* feature: EC2: The release includes AWS verified access to support FIPs compliance in North America regions
* feature: LakeFormation: This release adds three new API support "CreateLakeFormationOptIn", "DeleteLakeFormationOptIn" and "ListLakeFormationOptIns", and also updates the corresponding documentation.
* feature: S3: This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK.

## 2.1464.0
* feature: AmplifyUIBuilder: Support for generating code that is compatible with future versions of amplify project dependencies.
* feature: ChimeSDKMediaPipelines: Adds support for sending WebRTC audio to Amazon Kineses Video Streams.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,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.1464.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1465.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
83 changes: 83 additions & 0 deletions apis/appintegrations-2020-07-29.examples.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,88 @@
{
"version": "1.0",
"examples": {
"CreateApplication": [
{
"input": {
"ApplicationSourceConfig": {
"ExternalUrlConfig": {
"AccessUrl": "https://example.com"
}
},
"Description": "My first application.",
"Name": "My Application",
"Namespace": "myapplication"
},
"output": {
"Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e",
"Id": "98542c53-e8ac-4570-9c85-c6552c8d9c5e"
},
"comments": {
},
"description": "The following creates an application named My Application with access url https://example.com.",
"id": "create-an-application",
"title": "To create an application"
}
],
"GetApplication": [
{
"input": {
"Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e"
},
"output": {
"ApplicationSourceConfig": {
"ExternalUrlConfig": {
"AccessUrl": "https://example.com"
}
},
"Description": "My first application.",
"Name": "My Application",
"Namespace": "myapplication"
},
"comments": {
},
"description": "The following retrives an application.",
"id": "get-an-application",
"title": "To get an application"
}
],
"ListApplications": [
{
"input": {
"MaxResults": 1
},
"output": {
"Applications": [
{
"Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e",
"Id": "98542c53-e8ac-4570-9c85-c6552c8d9c5e",
"Name": "My Application",
"Namespace": "myapplication"
}
],
"NextToken": "abc"
},
"comments": {
},
"description": "The following lists application summary in the account.",
"id": "list-applications",
"title": "To list applications in the account"
}
],
"UpdateApplication": [
{
"input": {
"Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e",
"Name": "My New Application Name"
},
"output": {
},
"comments": {
},
"description": "The following updates an existing application named with a new name.",
"id": "update-an-application",
"title": "To update an application"
}
]
}
}
Loading

0 comments on commit f9df3e3

Please sign in to comment.