Skip to content

Commit b4ba175

Browse files
author
awstools
committed
Updates SDK to v2.1071.0
1 parent 1d56c09 commit b4ba175

22 files changed

+1689
-432
lines changed

.changes/2.1071.0.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"type": "feature",
4+
"category": "AppRunner",
5+
"description": "This release adds support for App Runner to route outbound network traffic of a service through an Amazon VPC. New API: CreateVpcConnector, DescribeVpcConnector, ListVpcConnectors, and DeleteVpcConnector. Updated API: CreateService, DescribeService, and UpdateService."
6+
},
7+
{
8+
"type": "feature",
9+
"category": "Kendra",
10+
"description": "Amazon Kendra now provides a data source connector for Amazon FSx. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/data-source-fsx.html"
11+
},
12+
{
13+
"type": "feature",
14+
"category": "S3Control",
15+
"description": "This release adds support for S3 Batch Replication. Batch Replication lets you replicate existing objects, already replicated objects to new destinations, and objects that previously failed to replicate. Customers will receive object-level visibility of progress and a detailed completion report."
16+
},
17+
{
18+
"type": "feature",
19+
"category": "SageMaker",
20+
"description": "Autopilot now generates an additional report with information on the performance of the best model, such as a Confusion matrix and Area under the receiver operating characteristic (AUC-ROC). The path to the report can be found in CandidateArtifactLocations."
21+
}
22+
]

CHANGELOG.md

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

5+
## 2.1071.0
6+
* feature: AppRunner: This release adds support for App Runner to route outbound network traffic of a service through an Amazon VPC. New API: CreateVpcConnector, DescribeVpcConnector, ListVpcConnectors, and DeleteVpcConnector. Updated API: CreateService, DescribeService, and UpdateService.
7+
* feature: Kendra: Amazon Kendra now provides a data source connector for Amazon FSx. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/data-source-fsx.html
8+
* feature: S3Control: This release adds support for S3 Batch Replication. Batch Replication lets you replicate existing objects, already replicated objects to new destinations, and objects that previously failed to replicate. Customers will receive object-level visibility of progress and a detailed completion report.
9+
* feature: SageMaker: Autopilot now generates an additional report with information on the performance of the best model, such as a Confusion matrix and Area under the receiver operating characteristic (AUC-ROC). The path to the report can be found in CandidateArtifactLocations.
10+
511
## 2.1070.0
612
* feature: AuditManager: This release updates 3 API parameters. UpdateAssessmentFrameworkControlSet now requires the controls attribute, and CreateAssessmentFrameworkControl requires the id attribute. Additionally, UpdateAssessmentFramework now has a minimum length constraint for the controlSets attribute.
713
* feature: SSMIncidents: Update RelatedItem enum to support SSM Automation

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
2929
To use the SDK in the browser, simply add the following script tag to your
3030
HTML pages:
3131

32-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1070.0.min.js"></script>
32+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1071.0.min.js"></script>
3333

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

apis/apprunner-2020-05-15.min.json

Lines changed: 171 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,10 @@
129129
"HealthCheckConfiguration": {
130130
"shape": "S1n"
131131
},
132-
"AutoScalingConfigurationArn": {}
132+
"AutoScalingConfigurationArn": {},
133+
"NetworkConfiguration": {
134+
"shape": "S1u"
135+
}
133136
}
134137
},
135138
"output": {
@@ -140,12 +143,44 @@
140143
],
141144
"members": {
142145
"Service": {
143-
"shape": "S1v"
146+
"shape": "S1y"
144147
},
145148
"OperationId": {}
146149
}
147150
}
148151
},
152+
"CreateVpcConnector": {
153+
"input": {
154+
"type": "structure",
155+
"required": [
156+
"VpcConnectorName",
157+
"Subnets"
158+
],
159+
"members": {
160+
"VpcConnectorName": {},
161+
"Subnets": {
162+
"shape": "S25"
163+
},
164+
"SecurityGroups": {
165+
"shape": "S25"
166+
},
167+
"Tags": {
168+
"shape": "Sh"
169+
}
170+
}
171+
},
172+
"output": {
173+
"type": "structure",
174+
"required": [
175+
"VpcConnector"
176+
],
177+
"members": {
178+
"VpcConnector": {
179+
"shape": "S27"
180+
}
181+
}
182+
}
183+
},
149184
"DeleteAutoScalingConfiguration": {
150185
"input": {
151186
"type": "structure",
@@ -205,12 +240,34 @@
205240
],
206241
"members": {
207242
"Service": {
208-
"shape": "S1v"
243+
"shape": "S1y"
209244
},
210245
"OperationId": {}
211246
}
212247
}
213248
},
249+
"DeleteVpcConnector": {
250+
"input": {
251+
"type": "structure",
252+
"required": [
253+
"VpcConnectorArn"
254+
],
255+
"members": {
256+
"VpcConnectorArn": {}
257+
}
258+
},
259+
"output": {
260+
"type": "structure",
261+
"required": [
262+
"VpcConnector"
263+
],
264+
"members": {
265+
"VpcConnector": {
266+
"shape": "S27"
267+
}
268+
}
269+
}
270+
},
214271
"DescribeAutoScalingConfiguration": {
215272
"input": {
216273
"type": "structure",
@@ -284,7 +341,29 @@
284341
],
285342
"members": {
286343
"Service": {
287-
"shape": "S1v"
344+
"shape": "S1y"
345+
}
346+
}
347+
}
348+
},
349+
"DescribeVpcConnector": {
350+
"input": {
351+
"type": "structure",
352+
"required": [
353+
"VpcConnectorArn"
354+
],
355+
"members": {
356+
"VpcConnectorArn": {}
357+
}
358+
},
359+
"output": {
360+
"type": "structure",
361+
"required": [
362+
"VpcConnector"
363+
],
364+
"members": {
365+
"VpcConnector": {
366+
"shape": "S27"
288367
}
289368
}
290369
}
@@ -340,7 +419,7 @@
340419
"AutoScalingConfigurationSummaryList": {
341420
"type": "list",
342421
"member": {
343-
"shape": "S1y"
422+
"shape": "S21"
344423
}
345424
},
346425
"NextToken": {}
@@ -483,6 +562,32 @@
483562
}
484563
}
485564
},
565+
"ListVpcConnectors": {
566+
"input": {
567+
"type": "structure",
568+
"members": {
569+
"MaxResults": {
570+
"type": "integer"
571+
},
572+
"NextToken": {}
573+
}
574+
},
575+
"output": {
576+
"type": "structure",
577+
"required": [
578+
"VpcConnectors"
579+
],
580+
"members": {
581+
"VpcConnectors": {
582+
"type": "list",
583+
"member": {
584+
"shape": "S27"
585+
}
586+
},
587+
"NextToken": {}
588+
}
589+
}
590+
},
486591
"PauseService": {
487592
"input": {
488593
"type": "structure",
@@ -500,7 +605,7 @@
500605
],
501606
"members": {
502607
"Service": {
503-
"shape": "S1v"
608+
"shape": "S1y"
504609
},
505610
"OperationId": {}
506611
}
@@ -523,7 +628,7 @@
523628
],
524629
"members": {
525630
"Service": {
526-
"shape": "S1v"
631+
"shape": "S1y"
527632
},
528633
"OperationId": {}
529634
}
@@ -605,6 +710,9 @@
605710
"AutoScalingConfigurationArn": {},
606711
"HealthCheckConfiguration": {
607712
"shape": "S1n"
713+
},
714+
"NetworkConfiguration": {
715+
"shape": "S1u"
608716
}
609717
}
610718
},
@@ -616,7 +724,7 @@
616724
],
617725
"members": {
618726
"Service": {
619-
"shape": "S1v"
727+
"shape": "S1y"
620728
},
621729
"OperationId": {}
622730
}
@@ -743,8 +851,7 @@
743851
"sensitive": true
744852
},
745853
"StartCommand": {
746-
"type": "string",
747-
"sensitive": true
854+
"shape": "S18"
748855
},
749856
"Port": {},
750857
"RuntimeEnvironmentVariables": {
@@ -770,7 +877,9 @@
770877
"RuntimeEnvironmentVariables": {
771878
"shape": "S19"
772879
},
773-
"StartCommand": {},
880+
"StartCommand": {
881+
"shape": "S18"
882+
},
774883
"Port": {}
775884
}
776885
},
@@ -789,6 +898,10 @@
789898
}
790899
}
791900
},
901+
"S18": {
902+
"type": "string",
903+
"sensitive": true
904+
},
792905
"S19": {
793906
"type": "map",
794907
"key": {
@@ -836,7 +949,19 @@
836949
}
837950
}
838951
},
839-
"S1v": {
952+
"S1u": {
953+
"type": "structure",
954+
"members": {
955+
"EgressConfiguration": {
956+
"type": "structure",
957+
"members": {
958+
"EgressType": {},
959+
"VpcConnectorArn": {}
960+
}
961+
}
962+
}
963+
},
964+
"S1y": {
840965
"type": "structure",
841966
"required": [
842967
"ServiceName",
@@ -848,7 +973,8 @@
848973
"Status",
849974
"SourceConfiguration",
850975
"InstanceConfiguration",
851-
"AutoScalingConfigurationSummary"
976+
"AutoScalingConfigurationSummary",
977+
"NetworkConfiguration"
852978
],
853979
"members": {
854980
"ServiceName": {},
@@ -878,11 +1004,14 @@
8781004
"shape": "S1n"
8791005
},
8801006
"AutoScalingConfigurationSummary": {
881-
"shape": "S1y"
1007+
"shape": "S21"
1008+
},
1009+
"NetworkConfiguration": {
1010+
"shape": "S1u"
8821011
}
8831012
}
8841013
},
885-
"S1y": {
1014+
"S21": {
8861015
"type": "structure",
8871016
"members": {
8881017
"AutoScalingConfigurationArn": {},
@@ -891,6 +1020,33 @@
8911020
"type": "integer"
8921021
}
8931022
}
1023+
},
1024+
"S25": {
1025+
"type": "list",
1026+
"member": {}
1027+
},
1028+
"S27": {
1029+
"type": "structure",
1030+
"members": {
1031+
"VpcConnectorName": {},
1032+
"VpcConnectorArn": {},
1033+
"VpcConnectorRevision": {
1034+
"type": "integer"
1035+
},
1036+
"Subnets": {
1037+
"shape": "S25"
1038+
},
1039+
"SecurityGroups": {
1040+
"shape": "S25"
1041+
},
1042+
"Status": {},
1043+
"CreatedAt": {
1044+
"type": "timestamp"
1045+
},
1046+
"DeletedAt": {
1047+
"type": "timestamp"
1048+
}
1049+
}
8941050
}
8951051
}
8961052
}

0 commit comments

Comments
 (0)