Skip to content

Commit b2d74e7

Browse files
author
awstools
committed
Updates SDK to v2.1672.0
1 parent fb498a3 commit b2d74e7

16 files changed

+359
-230
lines changed

.changes/2.1672.0.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "Connect",
5+
"description": "This release supports adding RoutingCriteria via UpdateContactRoutingData public API."
6+
}
7+
]

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Changelog for AWS SDK for JavaScript
2-
<!--LATEST=2.1671.0-->
2+
<!--LATEST=2.1672.0-->
33
<!--ENTRYINSERT-->
44

5+
## 2.1672.0
6+
* feature: Connect: This release supports adding RoutingCriteria via UpdateContactRoutingData public API.
7+
58
## 2.1671.0
69
* feature: CognitoIdentityServiceProvider: Added support for threat protection for custom authentication in Amazon Cognito user pools.
710
* feature: Connect: This release fixes a regression in number of access control tags that are allowed to be added to a security profile in Amazon Connect. You can now add up to four access control tags on a single security profile.

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.1671.0.min.js"></script>
67+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1672.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

apis/cognito-idp-2016-04-18.normal.json

+17-17
Large diffs are not rendered by default.

apis/connect-2017-08-08.min.json

+30-6
Original file line numberDiff line numberDiff line change
@@ -9348,6 +9348,30 @@
93489348
},
93499349
"QueuePriority": {
93509350
"type": "long"
9351+
},
9352+
"RoutingCriteria": {
9353+
"type": "structure",
9354+
"members": {
9355+
"Steps": {
9356+
"type": "list",
9357+
"member": {
9358+
"type": "structure",
9359+
"members": {
9360+
"Expiry": {
9361+
"type": "structure",
9362+
"members": {
9363+
"DurationInSeconds": {
9364+
"type": "integer"
9365+
}
9366+
}
9367+
},
9368+
"Expression": {
9369+
"shape": "Sdh"
9370+
}
9371+
}
9372+
}
9373+
}
9374+
}
93519375
}
93529376
}
93539377
},
@@ -10222,19 +10246,19 @@
1022210246
"type": "structure",
1022310247
"members": {
1022410248
"LevelOne": {
10225-
"shape": "S105"
10249+
"shape": "S109"
1022610250
},
1022710251
"LevelTwo": {
10228-
"shape": "S105"
10252+
"shape": "S109"
1022910253
},
1023010254
"LevelThree": {
10231-
"shape": "S105"
10255+
"shape": "S109"
1023210256
},
1023310257
"LevelFour": {
10234-
"shape": "S105"
10258+
"shape": "S109"
1023510259
},
1023610260
"LevelFive": {
10237-
"shape": "S105"
10261+
"shape": "S109"
1023810262
}
1023910263
}
1024010264
},
@@ -12358,7 +12382,7 @@
1235812382
}
1235912383
}
1236012384
},
12361-
"S105": {
12385+
"S109": {
1236212386
"type": "structure",
1236312387
"required": [
1236412388
"Name"

apis/connect-2017-08-08.normal.json

+62-18
Large diffs are not rendered by default.

apis/ssm-2014-11-06.normal.json

+14-14
Large diffs are not rendered by default.

clients/cognitoidentityserviceprovider.d.ts

+31-31
Large diffs are not rendered by default.

clients/connect.d.ts

+57-30
Large diffs are not rendered by default.

clients/ssm.d.ts

+16-16
Large diffs are not rendered by default.

dist/aws-sdk-core-react-native.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
8383
/**
8484
* @constant
8585
*/
86-
VERSION: '2.1671.0',
86+
VERSION: '2.1672.0',
8787

8888
/**
8989
* @api private

dist/aws-sdk-react-native.js

+2-2
Large diffs are not rendered by default.

dist/aws-sdk.js

+33-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// AWS SDK for JavaScript v2.1671.0
1+
// AWS SDK for JavaScript v2.1672.0
22
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
33
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
44
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
@@ -76879,6 +76879,30 @@ module.exports={
7687976879
},
7688076880
"QueuePriority": {
7688176881
"type": "long"
76882+
},
76883+
"RoutingCriteria": {
76884+
"type": "structure",
76885+
"members": {
76886+
"Steps": {
76887+
"type": "list",
76888+
"member": {
76889+
"type": "structure",
76890+
"members": {
76891+
"Expiry": {
76892+
"type": "structure",
76893+
"members": {
76894+
"DurationInSeconds": {
76895+
"type": "integer"
76896+
}
76897+
}
76898+
},
76899+
"Expression": {
76900+
"shape": "Sdh"
76901+
}
76902+
}
76903+
}
76904+
}
76905+
}
7688276906
}
7688376907
}
7688476908
},
@@ -77753,19 +77777,19 @@ module.exports={
7775377777
"type": "structure",
7775477778
"members": {
7775577779
"LevelOne": {
77756-
"shape": "S105"
77780+
"shape": "S109"
7775777781
},
7775877782
"LevelTwo": {
77759-
"shape": "S105"
77783+
"shape": "S109"
7776077784
},
7776177785
"LevelThree": {
77762-
"shape": "S105"
77786+
"shape": "S109"
7776377787
},
7776477788
"LevelFour": {
77765-
"shape": "S105"
77789+
"shape": "S109"
7776677790
},
7776777791
"LevelFive": {
77768-
"shape": "S105"
77792+
"shape": "S109"
7776977793
}
7777077794
}
7777177795
},
@@ -79889,7 +79913,7 @@ module.exports={
7988979913
}
7989079914
}
7989179915
},
79892-
"S105": {
79916+
"S109": {
7989379917
"type": "structure",
7989479918
"required": [
7989579919
"Name"
@@ -277485,7 +277509,7 @@ AWS.util.update(AWS, {
277485277509
/**
277486277510
* @constant
277487277511
*/
277488-
VERSION: '2.1671.0',
277512+
VERSION: '2.1672.0',
277489277513

277490277514
/**
277491277515
* @api private
@@ -299802,7 +299826,7 @@ var LRUCache = /** @class */ (function () {
299802299826
}());
299803299827
exports.LRUCache = LRUCache;
299804299828
},{}],467:[function(require,module,exports){
299805-
// AWS SDK for JavaScript v2.1671.0
299829+
// AWS SDK for JavaScript v2.1672.0
299806299830
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
299807299831
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
299808299832
require('./browser_loader');

dist/aws-sdk.min.js

+82-82
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
2020
/**
2121
* @constant
2222
*/
23-
VERSION: '2.1671.0',
23+
VERSION: '2.1672.0',
2424

2525
/**
2626
* @api private

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "aws-sdk",
33
"description": "AWS SDK for JavaScript",
4-
"version": "2.1671.0",
4+
"version": "2.1672.0",
55
"author": {
66
"name": "Amazon Web Services",
77
"email": "",

0 commit comments

Comments
 (0)