Skip to content

Commit f9df3e3

Browse files
author
awstools
committed
Updates SDK to v2.1465.0
1 parent f05ae33 commit f9df3e3

39 files changed

+3097
-1035
lines changed

.changes/2.1465.0.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "AppIntegrations",
5+
"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."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "AppRunner",
10+
"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"
11+
},
12+
{
13+
"type": "feature",
14+
"category": "Connect",
15+
"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."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "DynamoDB",
20+
"description": "Amazon DynamoDB now supports Incremental Export as an enhancement to the existing Export Table"
21+
},
22+
{
23+
"type": "feature",
24+
"category": "EC2",
25+
"description": "The release includes AWS verified access to support FIPs compliance in North America regions"
26+
},
27+
{
28+
"type": "feature",
29+
"category": "LakeFormation",
30+
"description": "This release adds three new API support \"CreateLakeFormationOptIn\", \"DeleteLakeFormationOptIn\" and \"ListLakeFormationOptIns\", and also updates the corresponding documentation."
31+
},
32+
{
33+
"type": "feature",
34+
"category": "S3",
35+
"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."
36+
}
37+
]

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1464.0-->
2+
<!--LATEST=2.1465.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1465.0
6+
* 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.
7+
* 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
8+
* 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.
9+
* feature: DynamoDB: Amazon DynamoDB now supports Incremental Export as an enhancement to the existing Export Table
10+
* feature: EC2: The release includes AWS verified access to support FIPs compliance in North America regions
11+
* feature: LakeFormation: This release adds three new API support "CreateLakeFormationOptIn", "DeleteLakeFormationOptIn" and "ListLakeFormationOptIns", and also updates the corresponding documentation.
12+
* 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.
13+
514
## 2.1464.0
615
* feature: AmplifyUIBuilder: Support for generating code that is compatible with future versions of amplify project dependencies.
716
* feature: ChimeSDKMediaPipelines: Adds support for sending WebRTC audio to Amazon Kineses Video Streams.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
7171
To use the SDK in the browser, simply add the following script tag to your
7272
HTML pages:
7373

74-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1464.0.min.js"></script>
74+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1465.0.min.js"></script>
7575

7676
You can also build a custom browser SDK with your specified set of AWS services.
7777
This can allow you to reduce the SDK's size, specify different API versions of
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,88 @@
11
{
22
"version": "1.0",
33
"examples": {
4+
"CreateApplication": [
5+
{
6+
"input": {
7+
"ApplicationSourceConfig": {
8+
"ExternalUrlConfig": {
9+
"AccessUrl": "https://example.com"
10+
}
11+
},
12+
"Description": "My first application.",
13+
"Name": "My Application",
14+
"Namespace": "myapplication"
15+
},
16+
"output": {
17+
"Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e",
18+
"Id": "98542c53-e8ac-4570-9c85-c6552c8d9c5e"
19+
},
20+
"comments": {
21+
},
22+
"description": "The following creates an application named My Application with access url https://example.com.",
23+
"id": "create-an-application",
24+
"title": "To create an application"
25+
}
26+
],
27+
"GetApplication": [
28+
{
29+
"input": {
30+
"Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e"
31+
},
32+
"output": {
33+
"ApplicationSourceConfig": {
34+
"ExternalUrlConfig": {
35+
"AccessUrl": "https://example.com"
36+
}
37+
},
38+
"Description": "My first application.",
39+
"Name": "My Application",
40+
"Namespace": "myapplication"
41+
},
42+
"comments": {
43+
},
44+
"description": "The following retrives an application.",
45+
"id": "get-an-application",
46+
"title": "To get an application"
47+
}
48+
],
49+
"ListApplications": [
50+
{
51+
"input": {
52+
"MaxResults": 1
53+
},
54+
"output": {
55+
"Applications": [
56+
{
57+
"Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e",
58+
"Id": "98542c53-e8ac-4570-9c85-c6552c8d9c5e",
59+
"Name": "My Application",
60+
"Namespace": "myapplication"
61+
}
62+
],
63+
"NextToken": "abc"
64+
},
65+
"comments": {
66+
},
67+
"description": "The following lists application summary in the account.",
68+
"id": "list-applications",
69+
"title": "To list applications in the account"
70+
}
71+
],
72+
"UpdateApplication": [
73+
{
74+
"input": {
75+
"Arn": "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e",
76+
"Name": "My New Application Name"
77+
},
78+
"output": {
79+
},
80+
"comments": {
81+
},
82+
"description": "The following updates an existing application named with a new name.",
83+
"id": "update-an-application",
84+
"title": "To update an application"
85+
}
86+
]
487
}
588
}

0 commit comments

Comments
 (0)