aws-sdk 2.1045.0 → 2.1046.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 +8 -1
- package/README.md +1 -1
- package/apis/ec2-2016-11-15.waiters2.json +18 -0
- package/apis/models.lex.v2-2020-08-07.min.json +91 -45
- package/apis/network-firewall-2020-11-12.min.json +74 -35
- package/apis/route53-recovery-control-config-2020-11-02.min.json +137 -39
- package/apis/route53domains-2014-05-15.min.json +132 -22
- package/apis/route53domains-2014-05-15.paginators.json +12 -0
- package/clients/ec2.d.ts +9 -1
- package/clients/lexmodelsv2.d.ts +57 -4
- package/clients/networkfirewall.d.ts +68 -7
- package/clients/route53domains.d.ts +179 -49
- package/clients/route53recoverycontrolconfig.d.ts +185 -78
- package/clients/savingsplans.d.ts +1 -1
- package/clients/sms.d.ts +31 -31
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +165 -25
- package/dist/aws-sdk.min.js +57 -57
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1046.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1046.0
|
|
6
|
+
* feature: EC2: Adds waiters support for internet gateways.
|
|
7
|
+
* feature: LexModelsV2: Added support for grammar slot type in Amazon Lex. You can author your own grammar in the XML format per the SRGS specification to collect information in a conversation.
|
|
8
|
+
* feature: NetworkFirewall: This release adds support for managed rule groups.
|
|
9
|
+
* feature: Route53Domains: Amazon Route 53 domain registration APIs now support filtering and sorting in the ListDomains API, deleting a domain by using the DeleteDomain API and getting domain pricing information by using the ListPrices API.
|
|
10
|
+
* feature: Route53RecoveryControlConfig: This release adds tagging supports to Route53 Recovery Control Configuration. New APIs: TagResource, UntagResource and ListTagsForResource. Updates: add optional field `tags` to support tagging while calling CreateCluster, CreateControlPanel and CreateSafetyRule.
|
|
11
|
+
|
|
5
12
|
## 2.1045.0
|
|
6
13
|
* feature: CloudWatchLogs: This release adds AWS Organizations support as condition key in destination policy for cross account Subscriptions in CloudWatch Logs.
|
|
7
14
|
* feature: ComprehendMedical: This release adds a new set of APIs (synchronous and batch) to support the SNOMED-CT ontology.
|
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.1046.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
|
|
@@ -281,6 +281,24 @@
|
|
|
281
281
|
}
|
|
282
282
|
]
|
|
283
283
|
},
|
|
284
|
+
"InternetGatewayExists": {
|
|
285
|
+
"operation": "DescribeInternetGateways",
|
|
286
|
+
"delay": 5,
|
|
287
|
+
"maxAttempts": 6,
|
|
288
|
+
"acceptors": [
|
|
289
|
+
{
|
|
290
|
+
"expected": true,
|
|
291
|
+
"matcher": "path",
|
|
292
|
+
"state": "success",
|
|
293
|
+
"argument": "length(InternetGateways[].InternetGatewayId) > `0`"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"expected": "InvalidInternetGateway.NotFound",
|
|
297
|
+
"matcher": "error",
|
|
298
|
+
"state": "retry"
|
|
299
|
+
}
|
|
300
|
+
]
|
|
301
|
+
},
|
|
284
302
|
"KeyPairExists": {
|
|
285
303
|
"operation": "DescribeKeyPairs",
|
|
286
304
|
"delay": 5,
|
|
@@ -567,7 +567,6 @@
|
|
|
567
567
|
"type": "structure",
|
|
568
568
|
"required": [
|
|
569
569
|
"slotTypeName",
|
|
570
|
-
"valueSelectionSetting",
|
|
571
570
|
"botId",
|
|
572
571
|
"botVersion",
|
|
573
572
|
"localeId"
|
|
@@ -593,6 +592,9 @@
|
|
|
593
592
|
"localeId": {
|
|
594
593
|
"location": "uri",
|
|
595
594
|
"locationName": "localeId"
|
|
595
|
+
},
|
|
596
|
+
"externalSourceSetting": {
|
|
597
|
+
"shape": "S4f"
|
|
596
598
|
}
|
|
597
599
|
}
|
|
598
600
|
},
|
|
@@ -614,6 +616,9 @@
|
|
|
614
616
|
"localeId": {},
|
|
615
617
|
"creationDateTime": {
|
|
616
618
|
"type": "timestamp"
|
|
619
|
+
},
|
|
620
|
+
"externalSourceSetting": {
|
|
621
|
+
"shape": "S4f"
|
|
617
622
|
}
|
|
618
623
|
}
|
|
619
624
|
}
|
|
@@ -1194,7 +1199,7 @@
|
|
|
1194
1199
|
},
|
|
1195
1200
|
"botLocaleStatus": {},
|
|
1196
1201
|
"failureReasons": {
|
|
1197
|
-
"shape": "
|
|
1202
|
+
"shape": "S5l"
|
|
1198
1203
|
},
|
|
1199
1204
|
"creationDateTime": {
|
|
1200
1205
|
"type": "timestamp"
|
|
@@ -1220,6 +1225,9 @@
|
|
|
1220
1225
|
}
|
|
1221
1226
|
}
|
|
1222
1227
|
}
|
|
1228
|
+
},
|
|
1229
|
+
"recommendedActions": {
|
|
1230
|
+
"shape": "S5q"
|
|
1223
1231
|
}
|
|
1224
1232
|
}
|
|
1225
1233
|
}
|
|
@@ -1266,7 +1274,7 @@
|
|
|
1266
1274
|
"botRecommendationStatus": {},
|
|
1267
1275
|
"botRecommendationId": {},
|
|
1268
1276
|
"failureReasons": {
|
|
1269
|
-
"shape": "
|
|
1277
|
+
"shape": "S5l"
|
|
1270
1278
|
},
|
|
1271
1279
|
"creationDateTime": {
|
|
1272
1280
|
"type": "timestamp"
|
|
@@ -1275,10 +1283,10 @@
|
|
|
1275
1283
|
"type": "timestamp"
|
|
1276
1284
|
},
|
|
1277
1285
|
"transcriptSourceSetting": {
|
|
1278
|
-
"shape": "
|
|
1286
|
+
"shape": "S5v"
|
|
1279
1287
|
},
|
|
1280
1288
|
"encryptionSetting": {
|
|
1281
|
-
"shape": "
|
|
1289
|
+
"shape": "S64"
|
|
1282
1290
|
},
|
|
1283
1291
|
"botRecommendationResults": {
|
|
1284
1292
|
"type": "structure",
|
|
@@ -1350,7 +1358,7 @@
|
|
|
1350
1358
|
},
|
|
1351
1359
|
"botStatus": {},
|
|
1352
1360
|
"failureReasons": {
|
|
1353
|
-
"shape": "
|
|
1361
|
+
"shape": "S5l"
|
|
1354
1362
|
},
|
|
1355
1363
|
"creationDateTime": {
|
|
1356
1364
|
"type": "timestamp"
|
|
@@ -1386,7 +1394,7 @@
|
|
|
1386
1394
|
"fileFormat": {},
|
|
1387
1395
|
"exportStatus": {},
|
|
1388
1396
|
"failureReasons": {
|
|
1389
|
-
"shape": "
|
|
1397
|
+
"shape": "S5l"
|
|
1390
1398
|
},
|
|
1391
1399
|
"downloadUrl": {},
|
|
1392
1400
|
"creationDateTime": {
|
|
@@ -1421,14 +1429,14 @@
|
|
|
1421
1429
|
"members": {
|
|
1422
1430
|
"importId": {},
|
|
1423
1431
|
"resourceSpecification": {
|
|
1424
|
-
"shape": "
|
|
1432
|
+
"shape": "S6h"
|
|
1425
1433
|
},
|
|
1426
1434
|
"importedResourceId": {},
|
|
1427
1435
|
"importedResourceName": {},
|
|
1428
1436
|
"mergeStrategy": {},
|
|
1429
1437
|
"importStatus": {},
|
|
1430
1438
|
"failureReasons": {
|
|
1431
|
-
"shape": "
|
|
1439
|
+
"shape": "S5l"
|
|
1432
1440
|
},
|
|
1433
1441
|
"creationDateTime": {
|
|
1434
1442
|
"type": "timestamp"
|
|
@@ -1489,7 +1497,7 @@
|
|
|
1489
1497
|
"shape": "S20"
|
|
1490
1498
|
},
|
|
1491
1499
|
"slotPriorities": {
|
|
1492
|
-
"shape": "
|
|
1500
|
+
"shape": "S6o"
|
|
1493
1501
|
},
|
|
1494
1502
|
"intentConfirmationSetting": {
|
|
1495
1503
|
"shape": "S2r"
|
|
@@ -1666,6 +1674,9 @@
|
|
|
1666
1674
|
},
|
|
1667
1675
|
"lastUpdatedDateTime": {
|
|
1668
1676
|
"type": "timestamp"
|
|
1677
|
+
},
|
|
1678
|
+
"externalSourceSetting": {
|
|
1679
|
+
"shape": "S4f"
|
|
1669
1680
|
}
|
|
1670
1681
|
}
|
|
1671
1682
|
}
|
|
@@ -1691,7 +1702,7 @@
|
|
|
1691
1702
|
"botVersion": {},
|
|
1692
1703
|
"localeId": {},
|
|
1693
1704
|
"aggregationDuration": {
|
|
1694
|
-
"shape": "
|
|
1705
|
+
"shape": "S6y"
|
|
1695
1706
|
},
|
|
1696
1707
|
"sortBy": {
|
|
1697
1708
|
"type": "structure",
|
|
@@ -1716,7 +1727,7 @@
|
|
|
1716
1727
|
"members": {
|
|
1717
1728
|
"name": {},
|
|
1718
1729
|
"values": {
|
|
1719
|
-
"shape": "
|
|
1730
|
+
"shape": "S78"
|
|
1720
1731
|
},
|
|
1721
1732
|
"operator": {}
|
|
1722
1733
|
}
|
|
@@ -1736,7 +1747,7 @@
|
|
|
1736
1747
|
"botVersion": {},
|
|
1737
1748
|
"localeId": {},
|
|
1738
1749
|
"aggregationDuration": {
|
|
1739
|
-
"shape": "
|
|
1750
|
+
"shape": "S6y"
|
|
1740
1751
|
},
|
|
1741
1752
|
"aggregationWindowStartTime": {
|
|
1742
1753
|
"type": "timestamp"
|
|
@@ -1866,7 +1877,7 @@
|
|
|
1866
1877
|
"members": {
|
|
1867
1878
|
"name": {},
|
|
1868
1879
|
"values": {
|
|
1869
|
-
"shape": "
|
|
1880
|
+
"shape": "S78"
|
|
1870
1881
|
},
|
|
1871
1882
|
"operator": {}
|
|
1872
1883
|
}
|
|
@@ -2052,7 +2063,7 @@
|
|
|
2052
2063
|
"members": {
|
|
2053
2064
|
"name": {},
|
|
2054
2065
|
"values": {
|
|
2055
|
-
"shape": "
|
|
2066
|
+
"shape": "S78"
|
|
2056
2067
|
},
|
|
2057
2068
|
"operator": {}
|
|
2058
2069
|
}
|
|
@@ -2220,7 +2231,7 @@
|
|
|
2220
2231
|
"members": {
|
|
2221
2232
|
"name": {},
|
|
2222
2233
|
"values": {
|
|
2223
|
-
"shape": "
|
|
2234
|
+
"shape": "S78"
|
|
2224
2235
|
},
|
|
2225
2236
|
"operator": {}
|
|
2226
2237
|
}
|
|
@@ -2294,7 +2305,7 @@
|
|
|
2294
2305
|
"members": {
|
|
2295
2306
|
"name": {},
|
|
2296
2307
|
"values": {
|
|
2297
|
-
"shape": "
|
|
2308
|
+
"shape": "S78"
|
|
2298
2309
|
},
|
|
2299
2310
|
"operator": {}
|
|
2300
2311
|
}
|
|
@@ -2382,7 +2393,7 @@
|
|
|
2382
2393
|
"members": {
|
|
2383
2394
|
"name": {},
|
|
2384
2395
|
"values": {
|
|
2385
|
-
"shape": "
|
|
2396
|
+
"shape": "S78"
|
|
2386
2397
|
},
|
|
2387
2398
|
"operator": {}
|
|
2388
2399
|
}
|
|
@@ -2533,7 +2544,7 @@
|
|
|
2533
2544
|
"members": {
|
|
2534
2545
|
"name": {},
|
|
2535
2546
|
"values": {
|
|
2536
|
-
"shape": "
|
|
2547
|
+
"shape": "S78"
|
|
2537
2548
|
},
|
|
2538
2549
|
"operator": {}
|
|
2539
2550
|
}
|
|
@@ -2562,7 +2573,8 @@
|
|
|
2562
2573
|
"parentSlotTypeSignature": {},
|
|
2563
2574
|
"lastUpdatedDateTime": {
|
|
2564
2575
|
"type": "timestamp"
|
|
2565
|
-
}
|
|
2576
|
+
},
|
|
2577
|
+
"slotTypeCategory": {}
|
|
2566
2578
|
}
|
|
2567
2579
|
}
|
|
2568
2580
|
},
|
|
@@ -2623,7 +2635,7 @@
|
|
|
2623
2635
|
"members": {
|
|
2624
2636
|
"name": {},
|
|
2625
2637
|
"values": {
|
|
2626
|
-
"shape": "
|
|
2638
|
+
"shape": "S78"
|
|
2627
2639
|
},
|
|
2628
2640
|
"operator": {}
|
|
2629
2641
|
}
|
|
@@ -2735,7 +2747,7 @@
|
|
|
2735
2747
|
"members": {
|
|
2736
2748
|
"name": {},
|
|
2737
2749
|
"values": {
|
|
2738
|
-
"shape": "
|
|
2750
|
+
"shape": "S78"
|
|
2739
2751
|
}
|
|
2740
2752
|
}
|
|
2741
2753
|
}
|
|
@@ -2801,10 +2813,10 @@
|
|
|
2801
2813
|
"locationName": "localeId"
|
|
2802
2814
|
},
|
|
2803
2815
|
"transcriptSourceSetting": {
|
|
2804
|
-
"shape": "
|
|
2816
|
+
"shape": "S5v"
|
|
2805
2817
|
},
|
|
2806
2818
|
"encryptionSetting": {
|
|
2807
|
-
"shape": "
|
|
2819
|
+
"shape": "S64"
|
|
2808
2820
|
}
|
|
2809
2821
|
}
|
|
2810
2822
|
},
|
|
@@ -2820,10 +2832,10 @@
|
|
|
2820
2832
|
"type": "timestamp"
|
|
2821
2833
|
},
|
|
2822
2834
|
"transcriptSourceSetting": {
|
|
2823
|
-
"shape": "
|
|
2835
|
+
"shape": "S5v"
|
|
2824
2836
|
},
|
|
2825
2837
|
"encryptionSetting": {
|
|
2826
|
-
"shape": "
|
|
2838
|
+
"shape": "S64"
|
|
2827
2839
|
}
|
|
2828
2840
|
}
|
|
2829
2841
|
}
|
|
@@ -2844,7 +2856,7 @@
|
|
|
2844
2856
|
"members": {
|
|
2845
2857
|
"importId": {},
|
|
2846
2858
|
"resourceSpecification": {
|
|
2847
|
-
"shape": "
|
|
2859
|
+
"shape": "S6h"
|
|
2848
2860
|
},
|
|
2849
2861
|
"mergeStrategy": {},
|
|
2850
2862
|
"filePassword": {
|
|
@@ -2857,7 +2869,7 @@
|
|
|
2857
2869
|
"members": {
|
|
2858
2870
|
"importId": {},
|
|
2859
2871
|
"resourceSpecification": {
|
|
2860
|
-
"shape": "
|
|
2872
|
+
"shape": "S6h"
|
|
2861
2873
|
},
|
|
2862
2874
|
"mergeStrategy": {},
|
|
2863
2875
|
"importStatus": {},
|
|
@@ -3092,13 +3104,16 @@
|
|
|
3092
3104
|
},
|
|
3093
3105
|
"botLocaleStatus": {},
|
|
3094
3106
|
"failureReasons": {
|
|
3095
|
-
"shape": "
|
|
3107
|
+
"shape": "S5l"
|
|
3096
3108
|
},
|
|
3097
3109
|
"creationDateTime": {
|
|
3098
3110
|
"type": "timestamp"
|
|
3099
3111
|
},
|
|
3100
3112
|
"lastUpdatedDateTime": {
|
|
3101
3113
|
"type": "timestamp"
|
|
3114
|
+
},
|
|
3115
|
+
"recommendedActions": {
|
|
3116
|
+
"shape": "S5q"
|
|
3102
3117
|
}
|
|
3103
3118
|
}
|
|
3104
3119
|
}
|
|
@@ -3136,7 +3151,7 @@
|
|
|
3136
3151
|
"locationName": "botRecommendationId"
|
|
3137
3152
|
},
|
|
3138
3153
|
"encryptionSetting": {
|
|
3139
|
-
"shape": "
|
|
3154
|
+
"shape": "S64"
|
|
3140
3155
|
}
|
|
3141
3156
|
}
|
|
3142
3157
|
},
|
|
@@ -3155,10 +3170,10 @@
|
|
|
3155
3170
|
"type": "timestamp"
|
|
3156
3171
|
},
|
|
3157
3172
|
"transcriptSourceSetting": {
|
|
3158
|
-
"shape": "
|
|
3173
|
+
"shape": "S5v"
|
|
3159
3174
|
},
|
|
3160
3175
|
"encryptionSetting": {
|
|
3161
|
-
"shape": "
|
|
3176
|
+
"shape": "S64"
|
|
3162
3177
|
}
|
|
3163
3178
|
}
|
|
3164
3179
|
}
|
|
@@ -3235,7 +3250,7 @@
|
|
|
3235
3250
|
"shape": "S20"
|
|
3236
3251
|
},
|
|
3237
3252
|
"slotPriorities": {
|
|
3238
|
-
"shape": "
|
|
3253
|
+
"shape": "S6o"
|
|
3239
3254
|
},
|
|
3240
3255
|
"intentConfirmationSetting": {
|
|
3241
3256
|
"shape": "S2r"
|
|
@@ -3283,7 +3298,7 @@
|
|
|
3283
3298
|
"shape": "S20"
|
|
3284
3299
|
},
|
|
3285
3300
|
"slotPriorities": {
|
|
3286
|
-
"shape": "
|
|
3301
|
+
"shape": "S6o"
|
|
3287
3302
|
},
|
|
3288
3303
|
"intentConfirmationSetting": {
|
|
3289
3304
|
"shape": "S2r"
|
|
@@ -3437,7 +3452,6 @@
|
|
|
3437
3452
|
"required": [
|
|
3438
3453
|
"slotTypeId",
|
|
3439
3454
|
"slotTypeName",
|
|
3440
|
-
"valueSelectionSetting",
|
|
3441
3455
|
"botId",
|
|
3442
3456
|
"botVersion",
|
|
3443
3457
|
"localeId"
|
|
@@ -3467,6 +3481,9 @@
|
|
|
3467
3481
|
"localeId": {
|
|
3468
3482
|
"location": "uri",
|
|
3469
3483
|
"locationName": "localeId"
|
|
3484
|
+
},
|
|
3485
|
+
"externalSourceSetting": {
|
|
3486
|
+
"shape": "S4f"
|
|
3470
3487
|
}
|
|
3471
3488
|
}
|
|
3472
3489
|
},
|
|
@@ -3491,6 +3508,9 @@
|
|
|
3491
3508
|
},
|
|
3492
3509
|
"lastUpdatedDateTime": {
|
|
3493
3510
|
"type": "timestamp"
|
|
3511
|
+
},
|
|
3512
|
+
"externalSourceSetting": {
|
|
3513
|
+
"shape": "S4f"
|
|
3494
3514
|
}
|
|
3495
3515
|
}
|
|
3496
3516
|
}
|
|
@@ -4108,11 +4128,37 @@
|
|
|
4108
4128
|
}
|
|
4109
4129
|
}
|
|
4110
4130
|
},
|
|
4111
|
-
"
|
|
4131
|
+
"S4f": {
|
|
4132
|
+
"type": "structure",
|
|
4133
|
+
"members": {
|
|
4134
|
+
"grammarSlotTypeSetting": {
|
|
4135
|
+
"type": "structure",
|
|
4136
|
+
"members": {
|
|
4137
|
+
"source": {
|
|
4138
|
+
"type": "structure",
|
|
4139
|
+
"required": [
|
|
4140
|
+
"s3BucketName",
|
|
4141
|
+
"s3ObjectKey"
|
|
4142
|
+
],
|
|
4143
|
+
"members": {
|
|
4144
|
+
"s3BucketName": {},
|
|
4145
|
+
"s3ObjectKey": {},
|
|
4146
|
+
"kmsKeyArn": {}
|
|
4147
|
+
}
|
|
4148
|
+
}
|
|
4149
|
+
}
|
|
4150
|
+
}
|
|
4151
|
+
}
|
|
4152
|
+
},
|
|
4153
|
+
"S5l": {
|
|
4154
|
+
"type": "list",
|
|
4155
|
+
"member": {}
|
|
4156
|
+
},
|
|
4157
|
+
"S5q": {
|
|
4112
4158
|
"type": "list",
|
|
4113
4159
|
"member": {}
|
|
4114
4160
|
},
|
|
4115
|
-
"
|
|
4161
|
+
"S5v": {
|
|
4116
4162
|
"type": "structure",
|
|
4117
4163
|
"members": {
|
|
4118
4164
|
"s3BucketTranscriptSource": {
|
|
@@ -4163,23 +4209,23 @@
|
|
|
4163
4209
|
}
|
|
4164
4210
|
}
|
|
4165
4211
|
},
|
|
4166
|
-
"
|
|
4212
|
+
"S64": {
|
|
4167
4213
|
"type": "structure",
|
|
4168
4214
|
"members": {
|
|
4169
4215
|
"kmsKeyArn": {},
|
|
4170
4216
|
"botLocaleExportPassword": {
|
|
4171
|
-
"shape": "
|
|
4217
|
+
"shape": "S65"
|
|
4172
4218
|
},
|
|
4173
4219
|
"associatedTranscriptsPassword": {
|
|
4174
|
-
"shape": "
|
|
4220
|
+
"shape": "S65"
|
|
4175
4221
|
}
|
|
4176
4222
|
}
|
|
4177
4223
|
},
|
|
4178
|
-
"
|
|
4224
|
+
"S65": {
|
|
4179
4225
|
"type": "string",
|
|
4180
4226
|
"sensitive": true
|
|
4181
4227
|
},
|
|
4182
|
-
"
|
|
4228
|
+
"S6h": {
|
|
4183
4229
|
"type": "structure",
|
|
4184
4230
|
"members": {
|
|
4185
4231
|
"botImportSpecification": {
|
|
@@ -4227,7 +4273,7 @@
|
|
|
4227
4273
|
}
|
|
4228
4274
|
}
|
|
4229
4275
|
},
|
|
4230
|
-
"
|
|
4276
|
+
"S6o": {
|
|
4231
4277
|
"type": "list",
|
|
4232
4278
|
"member": {
|
|
4233
4279
|
"type": "structure",
|
|
@@ -4243,7 +4289,7 @@
|
|
|
4243
4289
|
}
|
|
4244
4290
|
}
|
|
4245
4291
|
},
|
|
4246
|
-
"
|
|
4292
|
+
"S6y": {
|
|
4247
4293
|
"type": "structure",
|
|
4248
4294
|
"required": [
|
|
4249
4295
|
"relativeAggregationDuration"
|
|
@@ -4264,7 +4310,7 @@
|
|
|
4264
4310
|
}
|
|
4265
4311
|
}
|
|
4266
4312
|
},
|
|
4267
|
-
"
|
|
4313
|
+
"S78": {
|
|
4268
4314
|
"type": "list",
|
|
4269
4315
|
"member": {}
|
|
4270
4316
|
}
|