Skip to content

Commit ec78f30

Browse files
author
awstools
committed
Updates SDK to v2.1536.0
1 parent 675a8f5 commit ec78f30

File tree

11 files changed

+29
-25
lines changed

11 files changed

+29
-25
lines changed

.changes/2.1536.0.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "SageMaker",
5+
"description": "This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts."
6+
}
7+
]

CHANGELOG.md

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

5+
## 2.1536.0
6+
* feature: SageMaker: This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts.
7+
58
## 2.1535.0
69
* feature: Connect: Supervisor Barge for Chat is now supported through the MonitorContact API.
710
* feature: ConnectParticipant: Introduce new Supervisor participant role

README.md

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

72-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1535.0.min.js"></script>
72+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1536.0.min.js"></script>
7373

7474
You can also build a custom browser SDK with your specified set of AWS services.
7575
This can allow you to reduce the SDK's size, specify different API versions of

apis/sagemaker-2017-07-24.normal.json

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5927,7 +5927,8 @@
59275927
"AdditionalS3DataSourceDataType": {
59285928
"type": "string",
59295929
"enum": [
5930-
"S3Object"
5930+
"S3Object",
5931+
"S3Prefix"
59315932
]
59325933
},
59335934
"AgentVersion": {
@@ -6444,17 +6445,11 @@
64446445
"KernelGateway",
64456446
"DetailedProfiler",
64466447
"TensorBoard",
6447-
"VSCode",
6448-
"Savitur",
64496448
"CodeEditor",
64506449
"JupyterLab",
64516450
"RStudioServerPro",
6452-
"RSession",
64536451
"RSessionGateway",
6454-
"Canvas",
6455-
"DatasetManager",
6456-
"SageMakerLite",
6457-
"Local"
6452+
"Canvas"
64586453
]
64596454
},
64606455
"ApprovalDescription": {
@@ -36903,8 +36898,6 @@
3690336898
"enum": [
3690436899
"JupyterServer",
3690536900
"KernelGateway",
36906-
"VSCode",
36907-
"Savitur",
3690836901
"CodeEditor",
3690936902
"JupyterLab"
3691036903
]
@@ -40860,7 +40853,8 @@
4086040853
"type": "list",
4086140854
"member": {
4086240855
"shape": "AccountId"
40863-
}
40856+
},
40857+
"max": 10
4086440858
},
4086540859
"VpcSecurityGroupIds": {
4086640860
"type": "list",

clients/sagemaker.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2798,7 +2798,7 @@ declare namespace SageMaker {
27982798
*/
27992799
CompressionType?: CompressionType;
28002800
}
2801-
export type AdditionalS3DataSourceDataType = "S3Object"|string;
2801+
export type AdditionalS3DataSourceDataType = "S3Object"|"S3Prefix"|string;
28022802
export interface AgentVersion {
28032803
/**
28042804
* Version of the agent.
@@ -3018,7 +3018,7 @@ declare namespace SageMaker {
30183018
ContainerArguments?: ContainerArguments;
30193019
}
30203020
export type AppStatus = "Deleted"|"Deleting"|"Failed"|"InService"|"Pending"|string;
3021-
export type AppType = "JupyterServer"|"KernelGateway"|"DetailedProfiler"|"TensorBoard"|"VSCode"|"Savitur"|"CodeEditor"|"JupyterLab"|"RStudioServerPro"|"RSession"|"RSessionGateway"|"Canvas"|"DatasetManager"|"SageMakerLite"|"Local"|string;
3021+
export type AppType = "JupyterServer"|"KernelGateway"|"DetailedProfiler"|"TensorBoard"|"CodeEditor"|"JupyterLab"|"RStudioServerPro"|"RSessionGateway"|"Canvas"|string;
30223022
export type ApprovalDescription = string;
30233023
export type ArnOrName = string;
30243024
export type ArtifactArn = string;
@@ -21816,7 +21816,7 @@ declare namespace SageMaker {
2181621816
export type String64 = string;
2181721817
export type String8192 = string;
2181821818
export type StringParameterValue = string;
21819-
export type StudioLifecycleConfigAppType = "JupyterServer"|"KernelGateway"|"VSCode"|"Savitur"|"CodeEditor"|"JupyterLab"|string;
21819+
export type StudioLifecycleConfigAppType = "JupyterServer"|"KernelGateway"|"CodeEditor"|"JupyterLab"|string;
2182021820
export type StudioLifecycleConfigArn = string;
2182121821
export type StudioLifecycleConfigContent = string;
2182221822
export interface StudioLifecycleConfigDetails {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
8383
/**
8484
* @constant
8585
*/
86-
VERSION: '2.1535.0',
86+
VERSION: '2.1536.0',
8787

8888
/**
8989
* @api private

dist/aws-sdk-react-native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ return /******/ (function(modules) { // webpackBootstrap
395395
/**
396396
* @constant
397397
*/
398-
VERSION: '2.1535.0',
398+
VERSION: '2.1536.0',
399399

400400
/**
401401
* @api private

dist/aws-sdk.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// AWS SDK for JavaScript v2.1535.0
1+
// AWS SDK for JavaScript v2.1536.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){
@@ -271395,7 +271395,7 @@ AWS.util.update(AWS, {
271395271395
/**
271396271396
* @constant
271397271397
*/
271398-
VERSION: '2.1535.0',
271398+
VERSION: '2.1536.0',
271399271399

271400271400
/**
271401271401
* @api private
@@ -293619,7 +293619,7 @@ var LRUCache = /** @class */ (function () {
293619293619
}());
293620293620
exports.LRUCache = LRUCache;
293621293621
},{}],467:[function(require,module,exports){
293622-
// AWS SDK for JavaScript v2.1535.0
293622+
// AWS SDK for JavaScript v2.1536.0
293623293623
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
293624293624
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
293625293625
require('./browser_loader');

dist/aws-sdk.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
2020
/**
2121
* @constant
2222
*/
23-
VERSION: '2.1535.0',
23+
VERSION: '2.1536.0',
2424

2525
/**
2626
* @api private

0 commit comments

Comments
 (0)