Skip to content

Commit

Permalink
Updates SDK to v2.1334.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Mar 13, 2023
1 parent 4c9c49d commit ac41da1
Show file tree
Hide file tree
Showing 24 changed files with 1,652 additions and 259 deletions.
27 changes: 27 additions & 0 deletions .changes/2.1334.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[
{
"type": "bugfix",
"category": "maintenance mode message",
"description": "add environment var for suppression of maintenance mode message"
},
{
"type": "feature",
"category": "AppIntegrations",
"description": "Adds FileConfiguration to Amazon AppIntegrations CreateDataIntegration supporting scheduled downloading of third party files into Amazon Connect from sources such as Microsoft SharePoint."
},
{
"type": "feature",
"category": "S3Control",
"description": "Added support for cross-account Multi-Region Access Points. Added support for S3 Replication for S3 on Outposts."
},
{
"type": "feature",
"category": "Tnb",
"description": "This release adds tagging support to the following Network Instance APIs : Instantiate, Update, Terminate."
},
{
"type": "feature",
"category": "Wisdom",
"description": "This release extends Wisdom CreateKnowledgeBase API to support SharePoint connector type by removing the @required trait for objectField"
}
]

This file was deleted.

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.1333.0-->
<!--LATEST=2.1334.0-->
<!--ENTRYINSERT-->

## 2.1334.0
* bugfix: maintenance mode message: add environment var for suppression of maintenance mode message
* feature: AppIntegrations: Adds FileConfiguration to Amazon AppIntegrations CreateDataIntegration supporting scheduled downloading of third party files into Amazon Connect from sources such as Microsoft SharePoint.
* feature: S3Control: Added support for cross-account Multi-Region Access Points. Added support for S3 Replication for S3 on Outposts.
* feature: Tnb: This release adds tagging support to the following Network Instance APIs : Instantiate, Update, Terminate.
* feature: Wisdom: This release extends Wisdom CreateKnowledgeBase API to support SharePoint connector type by removing the @required trait for objectField

## 2.1333.0
* bugfix: maintenance mode message: supress maintenance mode message in Lambda environment
* feature: Ivschat: This release adds a new exception returned when calling AWS IVS chat UpdateLoggingConfiguration. Now UpdateLoggingConfiguration can return ConflictException when invalid updates are made in sequence to Logging Configurations.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,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.1333.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1334.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
74 changes: 64 additions & 10 deletions apis/appintegrations-2020-07-29.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,30 @@
"input": {
"type": "structure",
"required": [
"Name"
"Name",
"KmsKey",
"SourceURI",
"ScheduleConfig"
],
"members": {
"Name": {},
"Description": {},
"KmsKey": {},
"SourceURI": {},
"ScheduleConfig": {
"shape": "S5"
"shape": "S6"
},
"Tags": {
"shape": "S8"
},
"ClientToken": {
"idempotencyToken": true
},
"FileConfiguration": {
"shape": "Sc"
},
"ObjectConfiguration": {
"shape": "Si"
}
}
},
Expand All @@ -47,12 +56,18 @@
"KmsKey": {},
"SourceURI": {},
"ScheduleConfiguration": {
"shape": "S5"
"shape": "S6"
},
"Tags": {
"shape": "S8"
},
"ClientToken": {}
"ClientToken": {},
"FileConfiguration": {
"shape": "Sc"
},
"ObjectConfiguration": {
"shape": "Si"
}
}
}
},
Expand All @@ -71,7 +86,7 @@
"Name": {},
"Description": {},
"EventFilter": {
"shape": "Sg"
"shape": "Sn"
},
"EventBridgeBus": {},
"ClientToken": {
Expand Down Expand Up @@ -160,10 +175,16 @@
"KmsKey": {},
"SourceURI": {},
"ScheduleConfiguration": {
"shape": "S5"
"shape": "S6"
},
"Tags": {
"shape": "S8"
},
"FileConfiguration": {
"shape": "Sc"
},
"ObjectConfiguration": {
"shape": "Si"
}
}
}
Expand Down Expand Up @@ -193,7 +214,7 @@
"EventIntegrationArn": {},
"EventBridgeBus": {},
"EventFilter": {
"shape": "Sg"
"shape": "Sn"
},
"Tags": {
"shape": "S8"
Expand Down Expand Up @@ -364,7 +385,7 @@
"Name": {},
"Description": {},
"EventFilter": {
"shape": "Sg"
"shape": "Sn"
},
"EventBridgeBus": {},
"Tags": {
Expand Down Expand Up @@ -506,8 +527,11 @@
}
},
"shapes": {
"S5": {
"S6": {
"type": "structure",
"required": [
"ScheduleExpression"
],
"members": {
"FirstExecutionFrom": {},
"Object": {},
Expand All @@ -519,7 +543,37 @@
"key": {},
"value": {}
},
"Sg": {
"Sc": {
"type": "structure",
"required": [
"Folders"
],
"members": {
"Folders": {
"type": "list",
"member": {}
},
"Filters": {
"shape": "Sf"
}
}
},
"Sf": {
"type": "map",
"key": {},
"value": {
"type": "list",
"member": {}
}
},
"Si": {
"type": "map",
"key": {},
"value": {
"shape": "Sf"
}
},
"Sn": {
"type": "structure",
"required": [
"Source"
Expand Down
Loading

0 comments on commit ac41da1

Please sign in to comment.