cdk-lambda-subminute 2.0.298 → 2.0.300
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/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +27 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.examples.json +3 -0
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.min.json +117 -94
- package/node_modules/aws-sdk/apis/backup-2018-11-15.min.json +222 -9
- package/node_modules/aws-sdk/apis/backup-2018-11-15.paginators.json +15 -0
- package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +133 -74
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +37 -31
- package/node_modules/aws-sdk/apis/codecatalyst-2022-09-28.min.json +361 -16
- package/node_modules/aws-sdk/apis/codecatalyst-2022-09-28.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +20 -10
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +423 -268
- package/node_modules/aws-sdk/apis/finspace-2021-03-12.min.json +15 -5
- package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +93 -31
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +538 -304
- package/node_modules/aws-sdk/apis/glue-2017-03-31.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +193 -161
- package/node_modules/aws-sdk/apis/mwaa-2020-07-01.min.json +31 -26
- package/node_modules/aws-sdk/apis/pipes-2015-10-07.min.json +136 -53
- package/node_modules/aws-sdk/apis/redshift-2012-12-01.min.json +6 -2
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.min.json +69 -5
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +562 -53
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.paginators.json +4 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1 -3
- package/node_modules/aws-sdk/apis/states-2016-11-23.min.json +100 -22
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +33 -4
- package/node_modules/aws-sdk/clients/backup.d.ts +279 -0
- package/node_modules/aws-sdk/clients/cleanrooms.d.ts +58 -10
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +29 -4
- package/node_modules/aws-sdk/clients/codecatalyst.d.ts +370 -5
- package/node_modules/aws-sdk/clients/connect.d.ts +13 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +179 -1
- package/node_modules/aws-sdk/clients/glue.d.ts +352 -2
- package/node_modules/aws-sdk/clients/iot.d.ts +46 -5
- package/node_modules/aws-sdk/clients/lambda.d.ts +1 -1
- package/node_modules/aws-sdk/clients/mwaa.d.ts +28 -5
- package/node_modules/aws-sdk/clients/pipes.d.ts +143 -18
- package/node_modules/aws-sdk/clients/rds.d.ts +1 -1
- package/node_modules/aws-sdk/clients/redshift.d.ts +6 -2
- package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +90 -9
- package/node_modules/aws-sdk/clients/s3control.d.ts +359 -7
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +2 -2
- package/node_modules/aws-sdk/clients/signer.d.ts +35 -35
- package/node_modules/aws-sdk/clients/stepfunctions.d.ts +123 -18
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +24 -24
- package/node_modules/aws-sdk/dist/aws-sdk.js +799 -569
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +100 -100
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -718,6 +718,134 @@
|
|
718
718
|
}
|
719
719
|
}
|
720
720
|
},
|
721
|
+
"GetWorkflow": {
|
722
|
+
"http": {
|
723
|
+
"method": "GET",
|
724
|
+
"requestUri": "/v1/spaces/{spaceName}/projects/{projectName}/workflows/{id}",
|
725
|
+
"responseCode": 200
|
726
|
+
},
|
727
|
+
"input": {
|
728
|
+
"type": "structure",
|
729
|
+
"required": [
|
730
|
+
"spaceName",
|
731
|
+
"id",
|
732
|
+
"projectName"
|
733
|
+
],
|
734
|
+
"members": {
|
735
|
+
"spaceName": {
|
736
|
+
"location": "uri",
|
737
|
+
"locationName": "spaceName"
|
738
|
+
},
|
739
|
+
"id": {
|
740
|
+
"location": "uri",
|
741
|
+
"locationName": "id"
|
742
|
+
},
|
743
|
+
"projectName": {
|
744
|
+
"location": "uri",
|
745
|
+
"locationName": "projectName"
|
746
|
+
}
|
747
|
+
}
|
748
|
+
},
|
749
|
+
"output": {
|
750
|
+
"type": "structure",
|
751
|
+
"required": [
|
752
|
+
"spaceName",
|
753
|
+
"projectName",
|
754
|
+
"id",
|
755
|
+
"name",
|
756
|
+
"definition",
|
757
|
+
"createdTime",
|
758
|
+
"lastUpdatedTime",
|
759
|
+
"runMode",
|
760
|
+
"status"
|
761
|
+
],
|
762
|
+
"members": {
|
763
|
+
"spaceName": {},
|
764
|
+
"projectName": {},
|
765
|
+
"id": {},
|
766
|
+
"name": {},
|
767
|
+
"sourceRepositoryName": {},
|
768
|
+
"sourceBranchName": {},
|
769
|
+
"definition": {
|
770
|
+
"type": "structure",
|
771
|
+
"required": [
|
772
|
+
"path"
|
773
|
+
],
|
774
|
+
"members": {
|
775
|
+
"path": {}
|
776
|
+
}
|
777
|
+
},
|
778
|
+
"createdTime": {
|
779
|
+
"shape": "S3"
|
780
|
+
},
|
781
|
+
"lastUpdatedTime": {
|
782
|
+
"shape": "S3"
|
783
|
+
},
|
784
|
+
"runMode": {},
|
785
|
+
"status": {}
|
786
|
+
}
|
787
|
+
}
|
788
|
+
},
|
789
|
+
"GetWorkflowRun": {
|
790
|
+
"http": {
|
791
|
+
"method": "GET",
|
792
|
+
"requestUri": "/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns/{id}",
|
793
|
+
"responseCode": 200
|
794
|
+
},
|
795
|
+
"input": {
|
796
|
+
"type": "structure",
|
797
|
+
"required": [
|
798
|
+
"spaceName",
|
799
|
+
"id",
|
800
|
+
"projectName"
|
801
|
+
],
|
802
|
+
"members": {
|
803
|
+
"spaceName": {
|
804
|
+
"location": "uri",
|
805
|
+
"locationName": "spaceName"
|
806
|
+
},
|
807
|
+
"id": {
|
808
|
+
"location": "uri",
|
809
|
+
"locationName": "id"
|
810
|
+
},
|
811
|
+
"projectName": {
|
812
|
+
"location": "uri",
|
813
|
+
"locationName": "projectName"
|
814
|
+
}
|
815
|
+
}
|
816
|
+
},
|
817
|
+
"output": {
|
818
|
+
"type": "structure",
|
819
|
+
"required": [
|
820
|
+
"spaceName",
|
821
|
+
"projectName",
|
822
|
+
"id",
|
823
|
+
"workflowId",
|
824
|
+
"status",
|
825
|
+
"startTime",
|
826
|
+
"lastUpdatedTime"
|
827
|
+
],
|
828
|
+
"members": {
|
829
|
+
"spaceName": {},
|
830
|
+
"projectName": {},
|
831
|
+
"id": {},
|
832
|
+
"workflowId": {},
|
833
|
+
"status": {},
|
834
|
+
"statusReasons": {
|
835
|
+
"shape": "S2g"
|
836
|
+
},
|
837
|
+
"startTime": {
|
838
|
+
"shape": "S3"
|
839
|
+
},
|
840
|
+
"endTime": {
|
841
|
+
"shape": "S3"
|
842
|
+
},
|
843
|
+
"lastUpdatedTime": {
|
844
|
+
"shape": "S3"
|
845
|
+
}
|
846
|
+
}
|
847
|
+
}
|
848
|
+
},
|
721
849
|
"ListAccessTokens": {
|
722
850
|
"http": {
|
723
851
|
"requestUri": "/v1/accessTokens",
|
@@ -824,24 +952,20 @@
|
|
824
952
|
},
|
825
953
|
"ListDevEnvironments": {
|
826
954
|
"http": {
|
827
|
-
"requestUri": "/v1/spaces/{spaceName}/
|
955
|
+
"requestUri": "/v1/spaces/{spaceName}/devEnvironments",
|
828
956
|
"responseCode": 200
|
829
957
|
},
|
830
958
|
"input": {
|
831
959
|
"type": "structure",
|
832
960
|
"required": [
|
833
|
-
"spaceName"
|
834
|
-
"projectName"
|
961
|
+
"spaceName"
|
835
962
|
],
|
836
963
|
"members": {
|
837
964
|
"spaceName": {
|
838
965
|
"location": "uri",
|
839
966
|
"locationName": "spaceName"
|
840
967
|
},
|
841
|
-
"projectName": {
|
842
|
-
"location": "uri",
|
843
|
-
"locationName": "projectName"
|
844
|
-
},
|
968
|
+
"projectName": {},
|
845
969
|
"filters": {
|
846
970
|
"type": "list",
|
847
971
|
"member": {
|
@@ -853,7 +977,7 @@
|
|
853
977
|
"members": {
|
854
978
|
"key": {},
|
855
979
|
"values": {
|
856
|
-
"shape": "
|
980
|
+
"shape": "S2y"
|
857
981
|
},
|
858
982
|
"comparisonOperator": {}
|
859
983
|
}
|
@@ -999,10 +1123,10 @@
|
|
999
1123
|
},
|
1000
1124
|
"requestId": {},
|
1001
1125
|
"requestPayload": {
|
1002
|
-
"shape": "
|
1126
|
+
"shape": "S3g"
|
1003
1127
|
},
|
1004
1128
|
"responsePayload": {
|
1005
|
-
"shape": "
|
1129
|
+
"shape": "S3g"
|
1006
1130
|
},
|
1007
1131
|
"errorCode": {},
|
1008
1132
|
"sourceIpAddress": {},
|
@@ -1043,7 +1167,7 @@
|
|
1043
1167
|
"members": {
|
1044
1168
|
"key": {},
|
1045
1169
|
"values": {
|
1046
|
-
"shape": "
|
1170
|
+
"shape": "S2y"
|
1047
1171
|
},
|
1048
1172
|
"comparisonOperator": {}
|
1049
1173
|
}
|
@@ -1217,6 +1341,172 @@
|
|
1217
1341
|
}
|
1218
1342
|
}
|
1219
1343
|
},
|
1344
|
+
"ListWorkflowRuns": {
|
1345
|
+
"http": {
|
1346
|
+
"requestUri": "/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns",
|
1347
|
+
"responseCode": 200
|
1348
|
+
},
|
1349
|
+
"input": {
|
1350
|
+
"type": "structure",
|
1351
|
+
"required": [
|
1352
|
+
"spaceName",
|
1353
|
+
"projectName"
|
1354
|
+
],
|
1355
|
+
"members": {
|
1356
|
+
"spaceName": {
|
1357
|
+
"location": "uri",
|
1358
|
+
"locationName": "spaceName"
|
1359
|
+
},
|
1360
|
+
"workflowId": {
|
1361
|
+
"location": "querystring",
|
1362
|
+
"locationName": "workflowId"
|
1363
|
+
},
|
1364
|
+
"projectName": {
|
1365
|
+
"location": "uri",
|
1366
|
+
"locationName": "projectName"
|
1367
|
+
},
|
1368
|
+
"nextToken": {
|
1369
|
+
"location": "querystring",
|
1370
|
+
"locationName": "nextToken"
|
1371
|
+
},
|
1372
|
+
"maxResults": {
|
1373
|
+
"location": "querystring",
|
1374
|
+
"locationName": "maxResults",
|
1375
|
+
"type": "integer"
|
1376
|
+
},
|
1377
|
+
"sortBy": {
|
1378
|
+
"type": "list",
|
1379
|
+
"member": {
|
1380
|
+
"type": "structure",
|
1381
|
+
"members": {}
|
1382
|
+
}
|
1383
|
+
}
|
1384
|
+
}
|
1385
|
+
},
|
1386
|
+
"output": {
|
1387
|
+
"type": "structure",
|
1388
|
+
"members": {
|
1389
|
+
"nextToken": {},
|
1390
|
+
"items": {
|
1391
|
+
"type": "list",
|
1392
|
+
"member": {
|
1393
|
+
"type": "structure",
|
1394
|
+
"required": [
|
1395
|
+
"id",
|
1396
|
+
"workflowId",
|
1397
|
+
"workflowName",
|
1398
|
+
"status",
|
1399
|
+
"startTime",
|
1400
|
+
"lastUpdatedTime"
|
1401
|
+
],
|
1402
|
+
"members": {
|
1403
|
+
"id": {},
|
1404
|
+
"workflowId": {},
|
1405
|
+
"workflowName": {},
|
1406
|
+
"status": {},
|
1407
|
+
"statusReasons": {
|
1408
|
+
"shape": "S2g"
|
1409
|
+
},
|
1410
|
+
"startTime": {
|
1411
|
+
"shape": "S3"
|
1412
|
+
},
|
1413
|
+
"endTime": {
|
1414
|
+
"shape": "S3"
|
1415
|
+
},
|
1416
|
+
"lastUpdatedTime": {
|
1417
|
+
"shape": "S3"
|
1418
|
+
}
|
1419
|
+
}
|
1420
|
+
}
|
1421
|
+
}
|
1422
|
+
}
|
1423
|
+
}
|
1424
|
+
},
|
1425
|
+
"ListWorkflows": {
|
1426
|
+
"http": {
|
1427
|
+
"requestUri": "/v1/spaces/{spaceName}/projects/{projectName}/workflows",
|
1428
|
+
"responseCode": 200
|
1429
|
+
},
|
1430
|
+
"input": {
|
1431
|
+
"type": "structure",
|
1432
|
+
"required": [
|
1433
|
+
"spaceName",
|
1434
|
+
"projectName"
|
1435
|
+
],
|
1436
|
+
"members": {
|
1437
|
+
"spaceName": {
|
1438
|
+
"location": "uri",
|
1439
|
+
"locationName": "spaceName"
|
1440
|
+
},
|
1441
|
+
"projectName": {
|
1442
|
+
"location": "uri",
|
1443
|
+
"locationName": "projectName"
|
1444
|
+
},
|
1445
|
+
"nextToken": {
|
1446
|
+
"location": "querystring",
|
1447
|
+
"locationName": "nextToken"
|
1448
|
+
},
|
1449
|
+
"maxResults": {
|
1450
|
+
"location": "querystring",
|
1451
|
+
"locationName": "maxResults",
|
1452
|
+
"type": "integer"
|
1453
|
+
},
|
1454
|
+
"sortBy": {
|
1455
|
+
"type": "list",
|
1456
|
+
"member": {
|
1457
|
+
"type": "structure",
|
1458
|
+
"members": {}
|
1459
|
+
}
|
1460
|
+
}
|
1461
|
+
}
|
1462
|
+
},
|
1463
|
+
"output": {
|
1464
|
+
"type": "structure",
|
1465
|
+
"members": {
|
1466
|
+
"nextToken": {},
|
1467
|
+
"items": {
|
1468
|
+
"type": "list",
|
1469
|
+
"member": {
|
1470
|
+
"type": "structure",
|
1471
|
+
"required": [
|
1472
|
+
"id",
|
1473
|
+
"name",
|
1474
|
+
"sourceRepositoryName",
|
1475
|
+
"sourceBranchName",
|
1476
|
+
"definition",
|
1477
|
+
"createdTime",
|
1478
|
+
"lastUpdatedTime",
|
1479
|
+
"runMode",
|
1480
|
+
"status"
|
1481
|
+
],
|
1482
|
+
"members": {
|
1483
|
+
"id": {},
|
1484
|
+
"name": {},
|
1485
|
+
"sourceRepositoryName": {},
|
1486
|
+
"sourceBranchName": {},
|
1487
|
+
"definition": {
|
1488
|
+
"type": "structure",
|
1489
|
+
"required": [
|
1490
|
+
"path"
|
1491
|
+
],
|
1492
|
+
"members": {
|
1493
|
+
"path": {}
|
1494
|
+
}
|
1495
|
+
},
|
1496
|
+
"createdTime": {
|
1497
|
+
"shape": "S3"
|
1498
|
+
},
|
1499
|
+
"lastUpdatedTime": {
|
1500
|
+
"shape": "S3"
|
1501
|
+
},
|
1502
|
+
"runMode": {},
|
1503
|
+
"status": {}
|
1504
|
+
}
|
1505
|
+
}
|
1506
|
+
}
|
1507
|
+
}
|
1508
|
+
}
|
1509
|
+
},
|
1220
1510
|
"StartDevEnvironment": {
|
1221
1511
|
"http": {
|
1222
1512
|
"method": "PUT",
|
@@ -1337,10 +1627,10 @@
|
|
1337
1627
|
],
|
1338
1628
|
"members": {
|
1339
1629
|
"streamUrl": {
|
1340
|
-
"shape": "
|
1630
|
+
"shape": "S53"
|
1341
1631
|
},
|
1342
1632
|
"tokenValue": {
|
1343
|
-
"shape": "
|
1633
|
+
"shape": "S53"
|
1344
1634
|
}
|
1345
1635
|
},
|
1346
1636
|
"sensitive": true
|
@@ -1352,6 +1642,54 @@
|
|
1352
1642
|
}
|
1353
1643
|
}
|
1354
1644
|
},
|
1645
|
+
"StartWorkflowRun": {
|
1646
|
+
"http": {
|
1647
|
+
"method": "PUT",
|
1648
|
+
"requestUri": "/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns",
|
1649
|
+
"responseCode": 200
|
1650
|
+
},
|
1651
|
+
"input": {
|
1652
|
+
"type": "structure",
|
1653
|
+
"required": [
|
1654
|
+
"spaceName",
|
1655
|
+
"projectName",
|
1656
|
+
"workflowId"
|
1657
|
+
],
|
1658
|
+
"members": {
|
1659
|
+
"spaceName": {
|
1660
|
+
"location": "uri",
|
1661
|
+
"locationName": "spaceName"
|
1662
|
+
},
|
1663
|
+
"projectName": {
|
1664
|
+
"location": "uri",
|
1665
|
+
"locationName": "projectName"
|
1666
|
+
},
|
1667
|
+
"workflowId": {
|
1668
|
+
"location": "querystring",
|
1669
|
+
"locationName": "workflowId"
|
1670
|
+
},
|
1671
|
+
"clientToken": {
|
1672
|
+
"idempotencyToken": true
|
1673
|
+
}
|
1674
|
+
}
|
1675
|
+
},
|
1676
|
+
"output": {
|
1677
|
+
"type": "structure",
|
1678
|
+
"required": [
|
1679
|
+
"spaceName",
|
1680
|
+
"projectName",
|
1681
|
+
"id",
|
1682
|
+
"workflowId"
|
1683
|
+
],
|
1684
|
+
"members": {
|
1685
|
+
"spaceName": {},
|
1686
|
+
"projectName": {},
|
1687
|
+
"id": {},
|
1688
|
+
"workflowId": {}
|
1689
|
+
}
|
1690
|
+
},
|
1691
|
+
"idempotent": true
|
1692
|
+
},
|
1355
1693
|
"StopDevEnvironment": {
|
1356
1694
|
"http": {
|
1357
1695
|
"method": "PUT",
|
@@ -1639,18 +1977,25 @@
|
|
1639
1977
|
"type": "timestamp",
|
1640
1978
|
"timestampFormat": "iso8601"
|
1641
1979
|
},
|
1642
|
-
"
|
1980
|
+
"S2g": {
|
1981
|
+
"type": "list",
|
1982
|
+
"member": {
|
1983
|
+
"type": "structure",
|
1984
|
+
"members": {}
|
1985
|
+
}
|
1986
|
+
},
|
1987
|
+
"S2y": {
|
1643
1988
|
"type": "list",
|
1644
1989
|
"member": {}
|
1645
1990
|
},
|
1646
|
-
"
|
1991
|
+
"S3g": {
|
1647
1992
|
"type": "structure",
|
1648
1993
|
"members": {
|
1649
1994
|
"contentType": {},
|
1650
1995
|
"data": {}
|
1651
1996
|
}
|
1652
1997
|
},
|
1653
|
-
"
|
1998
|
+
"S53": {
|
1654
1999
|
"type": "string",
|
1655
2000
|
"sensitive": true
|
1656
2001
|
}
|
@@ -46,6 +46,18 @@
|
|
46
46
|
"input_token": "nextToken",
|
47
47
|
"output_token": "nextToken",
|
48
48
|
"result_key": "items"
|
49
|
+
},
|
50
|
+
"ListWorkflowRuns": {
|
51
|
+
"input_token": "nextToken",
|
52
|
+
"output_token": "nextToken",
|
53
|
+
"limit_key": "maxResults",
|
54
|
+
"result_key": "items"
|
55
|
+
},
|
56
|
+
"ListWorkflows": {
|
57
|
+
"input_token": "nextToken",
|
58
|
+
"output_token": "nextToken",
|
59
|
+
"limit_key": "maxResults",
|
60
|
+
"result_key": "items"
|
49
61
|
}
|
50
62
|
}
|
51
63
|
}
|
@@ -6651,7 +6651,17 @@
|
|
6651
6651
|
"SourceContactId": {}
|
6652
6652
|
}
|
6653
6653
|
},
|
6654
|
-
"RelatedContactId": {}
|
6654
|
+
"RelatedContactId": {},
|
6655
|
+
"SegmentAttributes": {
|
6656
|
+
"type": "map",
|
6657
|
+
"key": {},
|
6658
|
+
"value": {
|
6659
|
+
"type": "structure",
|
6660
|
+
"members": {
|
6661
|
+
"ValueString": {}
|
6662
|
+
}
|
6663
|
+
}
|
6664
|
+
}
|
6655
6665
|
}
|
6656
6666
|
},
|
6657
6667
|
"output": {
|
@@ -6946,7 +6956,7 @@
|
|
6946
6956
|
"locationName": "EvaluationId"
|
6947
6957
|
},
|
6948
6958
|
"Answers": {
|
6949
|
-
"shape": "
|
6959
|
+
"shape": "Spc"
|
6950
6960
|
},
|
6951
6961
|
"Notes": {
|
6952
6962
|
"shape": "Sb8"
|
@@ -7169,7 +7179,7 @@
|
|
7169
7179
|
"locationName": "EvaluationId"
|
7170
7180
|
},
|
7171
7181
|
"Answers": {
|
7172
|
-
"shape": "
|
7182
|
+
"shape": "Spc"
|
7173
7183
|
},
|
7174
7184
|
"Notes": {
|
7175
7185
|
"shape": "Sb8"
|
@@ -8167,19 +8177,19 @@
|
|
8167
8177
|
"type": "structure",
|
8168
8178
|
"members": {
|
8169
8179
|
"LevelOne": {
|
8170
|
-
"shape": "
|
8180
|
+
"shape": "Srg"
|
8171
8181
|
},
|
8172
8182
|
"LevelTwo": {
|
8173
|
-
"shape": "
|
8183
|
+
"shape": "Srg"
|
8174
8184
|
},
|
8175
8185
|
"LevelThree": {
|
8176
|
-
"shape": "
|
8186
|
+
"shape": "Srg"
|
8177
8187
|
},
|
8178
8188
|
"LevelFour": {
|
8179
|
-
"shape": "
|
8189
|
+
"shape": "Srg"
|
8180
8190
|
},
|
8181
8191
|
"LevelFive": {
|
8182
|
-
"shape": "
|
8192
|
+
"shape": "Srg"
|
8183
8193
|
}
|
8184
8194
|
}
|
8185
8195
|
},
|
@@ -9662,7 +9672,7 @@
|
|
9662
9672
|
"shape": "Snw"
|
9663
9673
|
}
|
9664
9674
|
},
|
9665
|
-
"
|
9675
|
+
"Spc": {
|
9666
9676
|
"type": "map",
|
9667
9677
|
"key": {},
|
9668
9678
|
"value": {
|
@@ -9674,7 +9684,7 @@
|
|
9674
9684
|
}
|
9675
9685
|
}
|
9676
9686
|
},
|
9677
|
-
"
|
9687
|
+
"Srg": {
|
9678
9688
|
"type": "structure",
|
9679
9689
|
"required": [
|
9680
9690
|
"Name"
|