aws-sdk 2.1086.0 → 2.1089.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -1
- package/README.md +1 -1
- package/apis/chime-sdk-meetings-2021-07-15.min.json +6 -4
- package/apis/devops-guru-2020-12-01.min.json +139 -68
- package/apis/ec2-2016-11-15.min.json +2 -1
- package/apis/ecs-2014-11-13.min.json +10 -0
- package/apis/mediaconvert-2017-08-29.min.json +123 -117
- package/apis/synthetics-2017-10-11.min.json +36 -36
- package/apis/transfer-2018-11-05.waiters2.json +45 -0
- package/clients/chimesdkmeetings.d.ts +18 -5
- package/clients/connect.d.ts +1 -1
- package/clients/devopsguru.d.ts +90 -0
- package/clients/ec2.d.ts +5 -5
- package/clients/ecs.d.ts +49 -33
- package/clients/eks.d.ts +1 -1
- package/clients/keyspaces.d.ts +4 -4
- package/clients/macie.d.ts +50 -50
- package/clients/mediaconvert.d.ts +23 -13
- package/clients/migrationhubrefactorspaces.d.ts +17 -17
- package/clients/sts.d.ts +3 -3
- package/clients/synthetics.d.ts +3 -2
- package/clients/transfer.d.ts +17 -0
- package/clients/transfer.js +1 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +905 -898
- package/dist/aws-sdk.js +15 -4
- package/dist/aws-sdk.min.js +62 -62
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1089.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1089.0
|
|
6
|
+
* feature: EKS: Introducing a new enum for NodeGroup error code: Ec2SubnetMissingIpv6Assignment
|
|
7
|
+
* feature: MediaConvert: AWS Elemental MediaConvert SDK has added support for reading timecode from AVCHD sources and now provides the ability to segment WebVTT at the same interval as the video and audio in HLS packages.
|
|
8
|
+
|
|
9
|
+
## 2.1088.0
|
|
10
|
+
* feature: ChimeSDKMeetings: Adds support for Transcribe language identification feature to the StartMeetingTranscription API.
|
|
11
|
+
* feature: ECS: Amazon ECS UpdateService API now supports additional parameters: loadBalancers, propagateTags, enableECSManagedTags, and serviceRegistries
|
|
12
|
+
|
|
13
|
+
## 2.1087.0
|
|
14
|
+
* feature: Connect: This release updates the *InstanceStorageConfig APIs so they support a new ResourceType: REAL_TIME_CONTACT_ANALYSIS_SEGMENTS. Use this resource type to enable streaming for real-time contact analysis and to associate the Kinesis stream where real-time contact analysis segments will be published.
|
|
15
|
+
* feature: DevOpsGuru: Amazon DevOps Guru now integrates with Amazon CodeGuru Profiler. You can view CodeGuru Profiler recommendations for your AWS Lambda function in DevOps Guru. This feature is enabled by default for new customers as of 3/4/2022. Existing customers can enable this feature with UpdateEventSourcesConfig.
|
|
16
|
+
* feature: Synthetics: Allow custom handler function.
|
|
17
|
+
* feature: Transfer: Add waiters for server online and offline.
|
|
18
|
+
|
|
5
19
|
## 2.1086.0
|
|
6
20
|
* feature: Appflow: Launching Amazon AppFlow Marketo as a destination connector SDK.
|
|
7
21
|
* feature: FSx: This release adds support for data repository associations to use root ("/") as the file system path
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1089.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -326,9 +326,6 @@
|
|
|
326
326
|
"members": {
|
|
327
327
|
"EngineTranscribeSettings": {
|
|
328
328
|
"type": "structure",
|
|
329
|
-
"required": [
|
|
330
|
-
"LanguageCode"
|
|
331
|
-
],
|
|
332
329
|
"members": {
|
|
333
330
|
"LanguageCode": {},
|
|
334
331
|
"VocabularyFilterMethod": {},
|
|
@@ -342,7 +339,12 @@
|
|
|
342
339
|
"ContentIdentificationType": {},
|
|
343
340
|
"ContentRedactionType": {},
|
|
344
341
|
"PiiEntityTypes": {},
|
|
345
|
-
"LanguageModelName": {}
|
|
342
|
+
"LanguageModelName": {},
|
|
343
|
+
"IdentifyLanguage": {
|
|
344
|
+
"type": "boolean"
|
|
345
|
+
},
|
|
346
|
+
"LanguageOptions": {},
|
|
347
|
+
"PreferredLanguage": {}
|
|
346
348
|
}
|
|
347
349
|
},
|
|
348
350
|
"EngineTranscribeMedicalSettings": {
|
|
@@ -164,6 +164,12 @@
|
|
|
164
164
|
},
|
|
165
165
|
"Limit": {
|
|
166
166
|
"type": "double"
|
|
167
|
+
},
|
|
168
|
+
"SourceMetadata": {
|
|
169
|
+
"shape": "S29"
|
|
170
|
+
},
|
|
171
|
+
"AnomalyResources": {
|
|
172
|
+
"shape": "S2d"
|
|
167
173
|
}
|
|
168
174
|
}
|
|
169
175
|
},
|
|
@@ -198,6 +204,24 @@
|
|
|
198
204
|
}
|
|
199
205
|
}
|
|
200
206
|
},
|
|
207
|
+
"DescribeEventSourcesConfig": {
|
|
208
|
+
"http": {
|
|
209
|
+
"requestUri": "/event-sources",
|
|
210
|
+
"responseCode": 200
|
|
211
|
+
},
|
|
212
|
+
"input": {
|
|
213
|
+
"type": "structure",
|
|
214
|
+
"members": {}
|
|
215
|
+
},
|
|
216
|
+
"output": {
|
|
217
|
+
"type": "structure",
|
|
218
|
+
"members": {
|
|
219
|
+
"EventSources": {
|
|
220
|
+
"shape": "S2l"
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
},
|
|
201
225
|
"DescribeFeedback": {
|
|
202
226
|
"http": {
|
|
203
227
|
"requestUri": "/feedback",
|
|
@@ -213,7 +237,7 @@
|
|
|
213
237
|
"type": "structure",
|
|
214
238
|
"members": {
|
|
215
239
|
"InsightFeedback": {
|
|
216
|
-
"shape": "
|
|
240
|
+
"shape": "S2q"
|
|
217
241
|
}
|
|
218
242
|
}
|
|
219
243
|
}
|
|
@@ -251,7 +275,7 @@
|
|
|
251
275
|
"Severity": {},
|
|
252
276
|
"Status": {},
|
|
253
277
|
"InsightTimeRange": {
|
|
254
|
-
"shape": "
|
|
278
|
+
"shape": "S2y"
|
|
255
279
|
},
|
|
256
280
|
"PredictionTimeRange": {
|
|
257
281
|
"shape": "Ss"
|
|
@@ -259,7 +283,8 @@
|
|
|
259
283
|
"ResourceCollection": {
|
|
260
284
|
"shape": "S1z"
|
|
261
285
|
},
|
|
262
|
-
"SsmOpsItemId": {}
|
|
286
|
+
"SsmOpsItemId": {},
|
|
287
|
+
"Description": {}
|
|
263
288
|
}
|
|
264
289
|
},
|
|
265
290
|
"ReactiveInsight": {
|
|
@@ -270,12 +295,13 @@
|
|
|
270
295
|
"Severity": {},
|
|
271
296
|
"Status": {},
|
|
272
297
|
"InsightTimeRange": {
|
|
273
|
-
"shape": "
|
|
298
|
+
"shape": "S2y"
|
|
274
299
|
},
|
|
275
300
|
"ResourceCollection": {
|
|
276
301
|
"shape": "S1z"
|
|
277
302
|
},
|
|
278
|
-
"SsmOpsItemId": {}
|
|
303
|
+
"SsmOpsItemId": {},
|
|
304
|
+
"Description": {}
|
|
279
305
|
}
|
|
280
306
|
}
|
|
281
307
|
}
|
|
@@ -290,10 +316,10 @@
|
|
|
290
316
|
"type": "structure",
|
|
291
317
|
"members": {
|
|
292
318
|
"AccountIds": {
|
|
293
|
-
"shape": "
|
|
319
|
+
"shape": "S33"
|
|
294
320
|
},
|
|
295
321
|
"OrganizationalUnitIds": {
|
|
296
|
-
"shape": "
|
|
322
|
+
"shape": "S34"
|
|
297
323
|
}
|
|
298
324
|
}
|
|
299
325
|
},
|
|
@@ -339,10 +365,10 @@
|
|
|
339
365
|
"type": "timestamp"
|
|
340
366
|
},
|
|
341
367
|
"AccountIds": {
|
|
342
|
-
"shape": "
|
|
368
|
+
"shape": "S33"
|
|
343
369
|
},
|
|
344
370
|
"OrganizationalUnitIds": {
|
|
345
|
-
"shape": "
|
|
371
|
+
"shape": "S34"
|
|
346
372
|
}
|
|
347
373
|
}
|
|
348
374
|
},
|
|
@@ -375,10 +401,10 @@
|
|
|
375
401
|
"members": {
|
|
376
402
|
"OrganizationResourceCollectionType": {},
|
|
377
403
|
"AccountIds": {
|
|
378
|
-
"shape": "
|
|
404
|
+
"shape": "S33"
|
|
379
405
|
},
|
|
380
406
|
"OrganizationalUnitIds": {
|
|
381
|
-
"shape": "
|
|
407
|
+
"shape": "S34"
|
|
382
408
|
},
|
|
383
409
|
"NextToken": {},
|
|
384
410
|
"MaxResults": {
|
|
@@ -390,10 +416,10 @@
|
|
|
390
416
|
"type": "structure",
|
|
391
417
|
"members": {
|
|
392
418
|
"CloudFormation": {
|
|
393
|
-
"shape": "
|
|
419
|
+
"shape": "S3e"
|
|
394
420
|
},
|
|
395
421
|
"Service": {
|
|
396
|
-
"shape": "
|
|
422
|
+
"shape": "S3h"
|
|
397
423
|
},
|
|
398
424
|
"Account": {
|
|
399
425
|
"type": "list",
|
|
@@ -417,7 +443,7 @@
|
|
|
417
443
|
},
|
|
418
444
|
"NextToken": {},
|
|
419
445
|
"Tags": {
|
|
420
|
-
"shape": "
|
|
446
|
+
"shape": "S3o"
|
|
421
447
|
}
|
|
422
448
|
}
|
|
423
449
|
}
|
|
@@ -448,14 +474,14 @@
|
|
|
448
474
|
"type": "structure",
|
|
449
475
|
"members": {
|
|
450
476
|
"CloudFormation": {
|
|
451
|
-
"shape": "
|
|
477
|
+
"shape": "S3e"
|
|
452
478
|
},
|
|
453
479
|
"Service": {
|
|
454
|
-
"shape": "
|
|
480
|
+
"shape": "S3h"
|
|
455
481
|
},
|
|
456
482
|
"NextToken": {},
|
|
457
483
|
"Tags": {
|
|
458
|
-
"shape": "
|
|
484
|
+
"shape": "S3o"
|
|
459
485
|
}
|
|
460
486
|
}
|
|
461
487
|
}
|
|
@@ -506,7 +532,7 @@
|
|
|
506
532
|
"type": "structure",
|
|
507
533
|
"members": {
|
|
508
534
|
"ResourceCollection": {
|
|
509
|
-
"shape": "
|
|
535
|
+
"shape": "S40"
|
|
510
536
|
},
|
|
511
537
|
"Status": {},
|
|
512
538
|
"Costs": {
|
|
@@ -620,7 +646,7 @@
|
|
|
620
646
|
"locationName": "InsightId"
|
|
621
647
|
},
|
|
622
648
|
"StartTimeRange": {
|
|
623
|
-
"shape": "
|
|
649
|
+
"shape": "S4k"
|
|
624
650
|
},
|
|
625
651
|
"MaxResults": {
|
|
626
652
|
"type": "integer"
|
|
@@ -661,6 +687,12 @@
|
|
|
661
687
|
},
|
|
662
688
|
"Limit": {
|
|
663
689
|
"type": "double"
|
|
690
|
+
},
|
|
691
|
+
"SourceMetadata": {
|
|
692
|
+
"shape": "S29"
|
|
693
|
+
},
|
|
694
|
+
"AnomalyResources": {
|
|
695
|
+
"shape": "S2d"
|
|
664
696
|
}
|
|
665
697
|
}
|
|
666
698
|
}
|
|
@@ -797,7 +829,7 @@
|
|
|
797
829
|
],
|
|
798
830
|
"members": {
|
|
799
831
|
"StatusFilter": {
|
|
800
|
-
"shape": "
|
|
832
|
+
"shape": "S59"
|
|
801
833
|
},
|
|
802
834
|
"MaxResults": {
|
|
803
835
|
"type": "integer"
|
|
@@ -809,10 +841,10 @@
|
|
|
809
841
|
"type": "structure",
|
|
810
842
|
"members": {
|
|
811
843
|
"ProactiveInsights": {
|
|
812
|
-
"shape": "
|
|
844
|
+
"shape": "S5h"
|
|
813
845
|
},
|
|
814
846
|
"ReactiveInsights": {
|
|
815
|
-
"shape": "
|
|
847
|
+
"shape": "S5n"
|
|
816
848
|
},
|
|
817
849
|
"NextToken": {}
|
|
818
850
|
}
|
|
@@ -860,7 +892,7 @@
|
|
|
860
892
|
],
|
|
861
893
|
"members": {
|
|
862
894
|
"StatusFilter": {
|
|
863
|
-
"shape": "
|
|
895
|
+
"shape": "S59"
|
|
864
896
|
},
|
|
865
897
|
"MaxResults": {
|
|
866
898
|
"type": "integer"
|
|
@@ -891,7 +923,7 @@
|
|
|
891
923
|
"Severity": {},
|
|
892
924
|
"Status": {},
|
|
893
925
|
"InsightTimeRange": {
|
|
894
|
-
"shape": "
|
|
926
|
+
"shape": "S2y"
|
|
895
927
|
},
|
|
896
928
|
"PredictionTimeRange": {
|
|
897
929
|
"shape": "Ss"
|
|
@@ -900,7 +932,7 @@
|
|
|
900
932
|
"shape": "S1z"
|
|
901
933
|
},
|
|
902
934
|
"ServiceCollection": {
|
|
903
|
-
"shape": "
|
|
935
|
+
"shape": "S5j"
|
|
904
936
|
}
|
|
905
937
|
}
|
|
906
938
|
}
|
|
@@ -917,13 +949,13 @@
|
|
|
917
949
|
"Severity": {},
|
|
918
950
|
"Status": {},
|
|
919
951
|
"InsightTimeRange": {
|
|
920
|
-
"shape": "
|
|
952
|
+
"shape": "S2y"
|
|
921
953
|
},
|
|
922
954
|
"ResourceCollection": {
|
|
923
955
|
"shape": "S1z"
|
|
924
956
|
},
|
|
925
957
|
"ServiceCollection": {
|
|
926
|
-
"shape": "
|
|
958
|
+
"shape": "S5j"
|
|
927
959
|
}
|
|
928
960
|
}
|
|
929
961
|
}
|
|
@@ -1016,7 +1048,8 @@
|
|
|
1016
1048
|
"AnomalyId": {}
|
|
1017
1049
|
}
|
|
1018
1050
|
}
|
|
1019
|
-
}
|
|
1051
|
+
},
|
|
1052
|
+
"Category": {}
|
|
1020
1053
|
}
|
|
1021
1054
|
}
|
|
1022
1055
|
},
|
|
@@ -1034,7 +1067,7 @@
|
|
|
1034
1067
|
"type": "structure",
|
|
1035
1068
|
"members": {
|
|
1036
1069
|
"InsightFeedback": {
|
|
1037
|
-
"shape": "
|
|
1070
|
+
"shape": "S2q"
|
|
1038
1071
|
}
|
|
1039
1072
|
}
|
|
1040
1073
|
},
|
|
@@ -1079,22 +1112,22 @@
|
|
|
1079
1112
|
],
|
|
1080
1113
|
"members": {
|
|
1081
1114
|
"StartTimeRange": {
|
|
1082
|
-
"shape": "
|
|
1115
|
+
"shape": "S4k"
|
|
1083
1116
|
},
|
|
1084
1117
|
"Filters": {
|
|
1085
1118
|
"type": "structure",
|
|
1086
1119
|
"members": {
|
|
1087
1120
|
"Severities": {
|
|
1088
|
-
"shape": "
|
|
1121
|
+
"shape": "S70"
|
|
1089
1122
|
},
|
|
1090
1123
|
"Statuses": {
|
|
1091
|
-
"shape": "
|
|
1124
|
+
"shape": "S71"
|
|
1092
1125
|
},
|
|
1093
1126
|
"ResourceCollection": {
|
|
1094
1127
|
"shape": "S1z"
|
|
1095
1128
|
},
|
|
1096
1129
|
"ServiceCollection": {
|
|
1097
|
-
"shape": "
|
|
1130
|
+
"shape": "S5j"
|
|
1098
1131
|
}
|
|
1099
1132
|
}
|
|
1100
1133
|
},
|
|
@@ -1109,10 +1142,10 @@
|
|
|
1109
1142
|
"type": "structure",
|
|
1110
1143
|
"members": {
|
|
1111
1144
|
"ProactiveInsights": {
|
|
1112
|
-
"shape": "
|
|
1145
|
+
"shape": "S5h"
|
|
1113
1146
|
},
|
|
1114
1147
|
"ReactiveInsights": {
|
|
1115
|
-
"shape": "
|
|
1148
|
+
"shape": "S5n"
|
|
1116
1149
|
},
|
|
1117
1150
|
"NextToken": {}
|
|
1118
1151
|
}
|
|
@@ -1136,22 +1169,22 @@
|
|
|
1136
1169
|
"member": {}
|
|
1137
1170
|
},
|
|
1138
1171
|
"StartTimeRange": {
|
|
1139
|
-
"shape": "
|
|
1172
|
+
"shape": "S4k"
|
|
1140
1173
|
},
|
|
1141
1174
|
"Filters": {
|
|
1142
1175
|
"type": "structure",
|
|
1143
1176
|
"members": {
|
|
1144
1177
|
"Severities": {
|
|
1145
|
-
"shape": "
|
|
1178
|
+
"shape": "S70"
|
|
1146
1179
|
},
|
|
1147
1180
|
"Statuses": {
|
|
1148
|
-
"shape": "
|
|
1181
|
+
"shape": "S71"
|
|
1149
1182
|
},
|
|
1150
1183
|
"ResourceCollection": {
|
|
1151
1184
|
"shape": "S1z"
|
|
1152
1185
|
},
|
|
1153
1186
|
"ServiceCollection": {
|
|
1154
|
-
"shape": "
|
|
1187
|
+
"shape": "S5j"
|
|
1155
1188
|
}
|
|
1156
1189
|
}
|
|
1157
1190
|
},
|
|
@@ -1166,10 +1199,10 @@
|
|
|
1166
1199
|
"type": "structure",
|
|
1167
1200
|
"members": {
|
|
1168
1201
|
"ProactiveInsights": {
|
|
1169
|
-
"shape": "
|
|
1202
|
+
"shape": "S5h"
|
|
1170
1203
|
},
|
|
1171
1204
|
"ReactiveInsights": {
|
|
1172
|
-
"shape": "
|
|
1205
|
+
"shape": "S5n"
|
|
1173
1206
|
},
|
|
1174
1207
|
"NextToken": {}
|
|
1175
1208
|
}
|
|
@@ -1188,7 +1221,7 @@
|
|
|
1188
1221
|
],
|
|
1189
1222
|
"members": {
|
|
1190
1223
|
"ResourceCollection": {
|
|
1191
|
-
"shape": "
|
|
1224
|
+
"shape": "S40"
|
|
1192
1225
|
},
|
|
1193
1226
|
"ClientToken": {
|
|
1194
1227
|
"idempotencyToken": true
|
|
@@ -1200,6 +1233,25 @@
|
|
|
1200
1233
|
"members": {}
|
|
1201
1234
|
}
|
|
1202
1235
|
},
|
|
1236
|
+
"UpdateEventSourcesConfig": {
|
|
1237
|
+
"http": {
|
|
1238
|
+
"method": "PUT",
|
|
1239
|
+
"requestUri": "/event-sources",
|
|
1240
|
+
"responseCode": 200
|
|
1241
|
+
},
|
|
1242
|
+
"input": {
|
|
1243
|
+
"type": "structure",
|
|
1244
|
+
"members": {
|
|
1245
|
+
"EventSources": {
|
|
1246
|
+
"shape": "S2l"
|
|
1247
|
+
}
|
|
1248
|
+
}
|
|
1249
|
+
},
|
|
1250
|
+
"output": {
|
|
1251
|
+
"type": "structure",
|
|
1252
|
+
"members": {}
|
|
1253
|
+
}
|
|
1254
|
+
},
|
|
1203
1255
|
"UpdateResourceCollection": {
|
|
1204
1256
|
"http": {
|
|
1205
1257
|
"method": "PUT",
|
|
@@ -1512,6 +1564,14 @@
|
|
|
1512
1564
|
"type": "list",
|
|
1513
1565
|
"member": {}
|
|
1514
1566
|
},
|
|
1567
|
+
"S29": {
|
|
1568
|
+
"type": "structure",
|
|
1569
|
+
"members": {
|
|
1570
|
+
"Source": {},
|
|
1571
|
+
"SourceResourceName": {},
|
|
1572
|
+
"SourceResourceType": {}
|
|
1573
|
+
}
|
|
1574
|
+
},
|
|
1515
1575
|
"S2d": {
|
|
1516
1576
|
"type": "list",
|
|
1517
1577
|
"member": {
|
|
@@ -1522,14 +1582,25 @@
|
|
|
1522
1582
|
}
|
|
1523
1583
|
}
|
|
1524
1584
|
},
|
|
1525
|
-
"
|
|
1585
|
+
"S2l": {
|
|
1586
|
+
"type": "structure",
|
|
1587
|
+
"members": {
|
|
1588
|
+
"AmazonCodeGuruProfiler": {
|
|
1589
|
+
"type": "structure",
|
|
1590
|
+
"members": {
|
|
1591
|
+
"Status": {}
|
|
1592
|
+
}
|
|
1593
|
+
}
|
|
1594
|
+
}
|
|
1595
|
+
},
|
|
1596
|
+
"S2q": {
|
|
1526
1597
|
"type": "structure",
|
|
1527
1598
|
"members": {
|
|
1528
1599
|
"Id": {},
|
|
1529
1600
|
"Feedback": {}
|
|
1530
1601
|
}
|
|
1531
1602
|
},
|
|
1532
|
-
"
|
|
1603
|
+
"S2y": {
|
|
1533
1604
|
"type": "structure",
|
|
1534
1605
|
"required": [
|
|
1535
1606
|
"StartTime"
|
|
@@ -1543,27 +1614,27 @@
|
|
|
1543
1614
|
}
|
|
1544
1615
|
}
|
|
1545
1616
|
},
|
|
1546
|
-
"
|
|
1617
|
+
"S33": {
|
|
1547
1618
|
"type": "list",
|
|
1548
1619
|
"member": {}
|
|
1549
1620
|
},
|
|
1550
|
-
"
|
|
1621
|
+
"S34": {
|
|
1551
1622
|
"type": "list",
|
|
1552
1623
|
"member": {}
|
|
1553
1624
|
},
|
|
1554
|
-
"
|
|
1625
|
+
"S3e": {
|
|
1555
1626
|
"type": "list",
|
|
1556
1627
|
"member": {
|
|
1557
1628
|
"type": "structure",
|
|
1558
1629
|
"members": {
|
|
1559
1630
|
"StackName": {},
|
|
1560
1631
|
"Insight": {
|
|
1561
|
-
"shape": "
|
|
1632
|
+
"shape": "S3g"
|
|
1562
1633
|
}
|
|
1563
1634
|
}
|
|
1564
1635
|
}
|
|
1565
1636
|
},
|
|
1566
|
-
"
|
|
1637
|
+
"S3g": {
|
|
1567
1638
|
"type": "structure",
|
|
1568
1639
|
"members": {
|
|
1569
1640
|
"OpenProactiveInsights": {
|
|
@@ -1577,7 +1648,7 @@
|
|
|
1577
1648
|
}
|
|
1578
1649
|
}
|
|
1579
1650
|
},
|
|
1580
|
-
"
|
|
1651
|
+
"S3h": {
|
|
1581
1652
|
"type": "list",
|
|
1582
1653
|
"member": {
|
|
1583
1654
|
"type": "structure",
|
|
@@ -1597,7 +1668,7 @@
|
|
|
1597
1668
|
}
|
|
1598
1669
|
}
|
|
1599
1670
|
},
|
|
1600
|
-
"
|
|
1671
|
+
"S3o": {
|
|
1601
1672
|
"type": "list",
|
|
1602
1673
|
"member": {
|
|
1603
1674
|
"type": "structure",
|
|
@@ -1605,12 +1676,12 @@
|
|
|
1605
1676
|
"AppBoundaryKey": {},
|
|
1606
1677
|
"TagValue": {},
|
|
1607
1678
|
"Insight": {
|
|
1608
|
-
"shape": "
|
|
1679
|
+
"shape": "S3g"
|
|
1609
1680
|
}
|
|
1610
1681
|
}
|
|
1611
1682
|
}
|
|
1612
1683
|
},
|
|
1613
|
-
"
|
|
1684
|
+
"S40": {
|
|
1614
1685
|
"type": "structure",
|
|
1615
1686
|
"members": {
|
|
1616
1687
|
"CloudFormation": {
|
|
@@ -1641,7 +1712,7 @@
|
|
|
1641
1712
|
}
|
|
1642
1713
|
}
|
|
1643
1714
|
},
|
|
1644
|
-
"
|
|
1715
|
+
"S4k": {
|
|
1645
1716
|
"type": "structure",
|
|
1646
1717
|
"members": {
|
|
1647
1718
|
"FromTime": {
|
|
@@ -1652,7 +1723,7 @@
|
|
|
1652
1723
|
}
|
|
1653
1724
|
}
|
|
1654
1725
|
},
|
|
1655
|
-
"
|
|
1726
|
+
"S59": {
|
|
1656
1727
|
"type": "structure",
|
|
1657
1728
|
"members": {
|
|
1658
1729
|
"Ongoing": {
|
|
@@ -1694,13 +1765,13 @@
|
|
|
1694
1765
|
"members": {
|
|
1695
1766
|
"Type": {},
|
|
1696
1767
|
"StartTimeRange": {
|
|
1697
|
-
"shape": "
|
|
1768
|
+
"shape": "S4k"
|
|
1698
1769
|
}
|
|
1699
1770
|
}
|
|
1700
1771
|
}
|
|
1701
1772
|
}
|
|
1702
1773
|
},
|
|
1703
|
-
"
|
|
1774
|
+
"S5h": {
|
|
1704
1775
|
"type": "list",
|
|
1705
1776
|
"member": {
|
|
1706
1777
|
"type": "structure",
|
|
@@ -1710,7 +1781,7 @@
|
|
|
1710
1781
|
"Severity": {},
|
|
1711
1782
|
"Status": {},
|
|
1712
1783
|
"InsightTimeRange": {
|
|
1713
|
-
"shape": "
|
|
1784
|
+
"shape": "S2y"
|
|
1714
1785
|
},
|
|
1715
1786
|
"PredictionTimeRange": {
|
|
1716
1787
|
"shape": "Ss"
|
|
@@ -1719,15 +1790,15 @@
|
|
|
1719
1790
|
"shape": "S1z"
|
|
1720
1791
|
},
|
|
1721
1792
|
"ServiceCollection": {
|
|
1722
|
-
"shape": "
|
|
1793
|
+
"shape": "S5j"
|
|
1723
1794
|
},
|
|
1724
1795
|
"AssociatedResourceArns": {
|
|
1725
|
-
"shape": "
|
|
1796
|
+
"shape": "S5l"
|
|
1726
1797
|
}
|
|
1727
1798
|
}
|
|
1728
1799
|
}
|
|
1729
1800
|
},
|
|
1730
|
-
"
|
|
1801
|
+
"S5j": {
|
|
1731
1802
|
"type": "structure",
|
|
1732
1803
|
"members": {
|
|
1733
1804
|
"ServiceNames": {
|
|
@@ -1736,11 +1807,11 @@
|
|
|
1736
1807
|
}
|
|
1737
1808
|
}
|
|
1738
1809
|
},
|
|
1739
|
-
"
|
|
1810
|
+
"S5l": {
|
|
1740
1811
|
"type": "list",
|
|
1741
1812
|
"member": {}
|
|
1742
1813
|
},
|
|
1743
|
-
"
|
|
1814
|
+
"S5n": {
|
|
1744
1815
|
"type": "list",
|
|
1745
1816
|
"member": {
|
|
1746
1817
|
"type": "structure",
|
|
@@ -1750,25 +1821,25 @@
|
|
|
1750
1821
|
"Severity": {},
|
|
1751
1822
|
"Status": {},
|
|
1752
1823
|
"InsightTimeRange": {
|
|
1753
|
-
"shape": "
|
|
1824
|
+
"shape": "S2y"
|
|
1754
1825
|
},
|
|
1755
1826
|
"ResourceCollection": {
|
|
1756
1827
|
"shape": "S1z"
|
|
1757
1828
|
},
|
|
1758
1829
|
"ServiceCollection": {
|
|
1759
|
-
"shape": "
|
|
1830
|
+
"shape": "S5j"
|
|
1760
1831
|
},
|
|
1761
1832
|
"AssociatedResourceArns": {
|
|
1762
|
-
"shape": "
|
|
1833
|
+
"shape": "S5l"
|
|
1763
1834
|
}
|
|
1764
1835
|
}
|
|
1765
1836
|
}
|
|
1766
1837
|
},
|
|
1767
|
-
"
|
|
1838
|
+
"S70": {
|
|
1768
1839
|
"type": "list",
|
|
1769
1840
|
"member": {}
|
|
1770
1841
|
},
|
|
1771
|
-
"
|
|
1842
|
+
"S71": {
|
|
1772
1843
|
"type": "list",
|
|
1773
1844
|
"member": {}
|
|
1774
1845
|
}
|
|
@@ -1458,6 +1458,16 @@
|
|
|
1458
1458
|
},
|
|
1459
1459
|
"enableExecuteCommand": {
|
|
1460
1460
|
"type": "boolean"
|
|
1461
|
+
},
|
|
1462
|
+
"enableECSManagedTags": {
|
|
1463
|
+
"type": "boolean"
|
|
1464
|
+
},
|
|
1465
|
+
"loadBalancers": {
|
|
1466
|
+
"shape": "S15"
|
|
1467
|
+
},
|
|
1468
|
+
"propagateTags": {},
|
|
1469
|
+
"serviceRegistries": {
|
|
1470
|
+
"shape": "S18"
|
|
1461
1471
|
}
|
|
1462
1472
|
}
|
|
1463
1473
|
},
|