cdk-lambda-subminute 2.0.269 → 2.0.270
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 +13 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +28 -6
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.min.json +721 -79
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.paginators.json +18 -0
- package/node_modules/aws-sdk/apis/managedblockchain-query-2023-05-04.min.json +111 -0
- package/node_modules/aws-sdk/apis/managedblockchain-query-2023-05-04.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +78 -59
- package/node_modules/aws-sdk/apis/redshift-2012-12-01.min.json +205 -184
- package/node_modules/aws-sdk/apis/redshift-serverless-2021-04-21.min.json +34 -18
- package/node_modules/aws-sdk/apis/sesv2-2019-09-27.min.json +40 -18
- package/node_modules/aws-sdk/clients/cloudformation.d.ts +1 -1
- package/node_modules/aws-sdk/clients/drs.d.ts +27 -1
- package/node_modules/aws-sdk/clients/entityresolution.d.ts +650 -12
- package/node_modules/aws-sdk/clients/managedblockchainquery.d.ts +125 -9
- package/node_modules/aws-sdk/clients/mediapackagev2.d.ts +13 -13
- package/node_modules/aws-sdk/clients/opensearch.d.ts +46 -6
- package/node_modules/aws-sdk/clients/redshift.d.ts +47 -7
- package/node_modules/aws-sdk/clients/redshiftserverless.d.ts +42 -2
- package/node_modules/aws-sdk/clients/sesv2.d.ts +43 -3
- package/node_modules/aws-sdk/clients/transfer.d.ts +8 -8
- package/node_modules/aws-sdk/clients/xray.d.ts +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +45 -13
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +98 -34
- package/node_modules/aws-sdk/dist/aws-sdk.js +208 -187
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +28 -28
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/s3/managed_upload.d.ts +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -1,5 +1,17 @@
|
|
1
1
|
{
|
2
2
|
"pagination": {
|
3
|
+
"ListIdMappingJobs": {
|
4
|
+
"input_token": "nextToken",
|
5
|
+
"output_token": "nextToken",
|
6
|
+
"limit_key": "maxResults",
|
7
|
+
"result_key": "jobs"
|
8
|
+
},
|
9
|
+
"ListIdMappingWorkflows": {
|
10
|
+
"input_token": "nextToken",
|
11
|
+
"output_token": "nextToken",
|
12
|
+
"limit_key": "maxResults",
|
13
|
+
"result_key": "workflowSummaries"
|
14
|
+
},
|
3
15
|
"ListMatchingJobs": {
|
4
16
|
"input_token": "nextToken",
|
5
17
|
"output_token": "nextToken",
|
@@ -12,6 +24,12 @@
|
|
12
24
|
"limit_key": "maxResults",
|
13
25
|
"result_key": "workflowSummaries"
|
14
26
|
},
|
27
|
+
"ListProviderServices": {
|
28
|
+
"input_token": "nextToken",
|
29
|
+
"output_token": "nextToken",
|
30
|
+
"limit_key": "maxResults",
|
31
|
+
"result_key": "providerServiceSummaries"
|
32
|
+
},
|
15
33
|
"ListSchemaMappings": {
|
16
34
|
"input_token": "nextToken",
|
17
35
|
"output_token": "nextToken",
|
@@ -104,6 +104,48 @@
|
|
104
104
|
}
|
105
105
|
}
|
106
106
|
},
|
107
|
+
"GetAssetContract": {
|
108
|
+
"http": {
|
109
|
+
"requestUri": "/get-asset-contract",
|
110
|
+
"responseCode": 200
|
111
|
+
},
|
112
|
+
"input": {
|
113
|
+
"type": "structure",
|
114
|
+
"required": [
|
115
|
+
"contractIdentifier"
|
116
|
+
],
|
117
|
+
"members": {
|
118
|
+
"contractIdentifier": {
|
119
|
+
"shape": "Sj"
|
120
|
+
}
|
121
|
+
}
|
122
|
+
},
|
123
|
+
"output": {
|
124
|
+
"type": "structure",
|
125
|
+
"required": [
|
126
|
+
"contractIdentifier",
|
127
|
+
"tokenStandard",
|
128
|
+
"deployerAddress"
|
129
|
+
],
|
130
|
+
"members": {
|
131
|
+
"contractIdentifier": {
|
132
|
+
"shape": "Sj"
|
133
|
+
},
|
134
|
+
"tokenStandard": {},
|
135
|
+
"deployerAddress": {},
|
136
|
+
"metadata": {
|
137
|
+
"type": "structure",
|
138
|
+
"members": {
|
139
|
+
"name": {},
|
140
|
+
"symbol": {},
|
141
|
+
"decimals": {
|
142
|
+
"type": "integer"
|
143
|
+
}
|
144
|
+
}
|
145
|
+
}
|
146
|
+
}
|
147
|
+
}
|
148
|
+
},
|
107
149
|
"GetTokenBalance": {
|
108
150
|
"http": {
|
109
151
|
"requestUri": "/get-token-balance",
|
@@ -216,6 +258,64 @@
|
|
216
258
|
}
|
217
259
|
}
|
218
260
|
},
|
261
|
+
"ListAssetContracts": {
|
262
|
+
"http": {
|
263
|
+
"requestUri": "/list-asset-contracts",
|
264
|
+
"responseCode": 200
|
265
|
+
},
|
266
|
+
"input": {
|
267
|
+
"type": "structure",
|
268
|
+
"required": [
|
269
|
+
"contractFilter"
|
270
|
+
],
|
271
|
+
"members": {
|
272
|
+
"contractFilter": {
|
273
|
+
"type": "structure",
|
274
|
+
"required": [
|
275
|
+
"network",
|
276
|
+
"tokenStandard",
|
277
|
+
"deployerAddress"
|
278
|
+
],
|
279
|
+
"members": {
|
280
|
+
"network": {},
|
281
|
+
"tokenStandard": {},
|
282
|
+
"deployerAddress": {}
|
283
|
+
}
|
284
|
+
},
|
285
|
+
"nextToken": {},
|
286
|
+
"maxResults": {
|
287
|
+
"type": "integer"
|
288
|
+
}
|
289
|
+
}
|
290
|
+
},
|
291
|
+
"output": {
|
292
|
+
"type": "structure",
|
293
|
+
"required": [
|
294
|
+
"contracts"
|
295
|
+
],
|
296
|
+
"members": {
|
297
|
+
"contracts": {
|
298
|
+
"type": "list",
|
299
|
+
"member": {
|
300
|
+
"type": "structure",
|
301
|
+
"required": [
|
302
|
+
"contractIdentifier",
|
303
|
+
"tokenStandard",
|
304
|
+
"deployerAddress"
|
305
|
+
],
|
306
|
+
"members": {
|
307
|
+
"contractIdentifier": {
|
308
|
+
"shape": "Sj"
|
309
|
+
},
|
310
|
+
"tokenStandard": {},
|
311
|
+
"deployerAddress": {}
|
312
|
+
}
|
313
|
+
}
|
314
|
+
},
|
315
|
+
"nextToken": {}
|
316
|
+
}
|
317
|
+
}
|
318
|
+
},
|
219
319
|
"ListTokenBalances": {
|
220
320
|
"http": {
|
221
321
|
"requestUri": "/list-token-balances",
|
@@ -433,6 +533,17 @@
|
|
433
533
|
"type": "timestamp"
|
434
534
|
}
|
435
535
|
}
|
536
|
+
},
|
537
|
+
"Sj": {
|
538
|
+
"type": "structure",
|
539
|
+
"required": [
|
540
|
+
"network",
|
541
|
+
"contractAddress"
|
542
|
+
],
|
543
|
+
"members": {
|
544
|
+
"network": {},
|
545
|
+
"contractAddress": {}
|
546
|
+
}
|
436
547
|
}
|
437
548
|
}
|
438
549
|
}
|
@@ -314,7 +314,7 @@
|
|
314
314
|
],
|
315
315
|
"members": {
|
316
316
|
"VpcEndpoint": {
|
317
|
-
"shape": "
|
317
|
+
"shape": "S3w"
|
318
318
|
}
|
319
319
|
}
|
320
320
|
}
|
@@ -392,7 +392,7 @@
|
|
392
392
|
"type": "structure",
|
393
393
|
"members": {
|
394
394
|
"Connection": {
|
395
|
-
"shape": "
|
395
|
+
"shape": "S45"
|
396
396
|
}
|
397
397
|
}
|
398
398
|
}
|
@@ -447,7 +447,7 @@
|
|
447
447
|
],
|
448
448
|
"members": {
|
449
449
|
"VpcEndpointSummary": {
|
450
|
-
"shape": "
|
450
|
+
"shape": "S4a"
|
451
451
|
}
|
452
452
|
}
|
453
453
|
}
|
@@ -618,7 +618,7 @@
|
|
618
618
|
],
|
619
619
|
"members": {
|
620
620
|
"DomainConfig": {
|
621
|
-
"shape": "
|
621
|
+
"shape": "S53"
|
622
622
|
}
|
623
623
|
}
|
624
624
|
}
|
@@ -782,13 +782,13 @@
|
|
782
782
|
"type": "structure",
|
783
783
|
"members": {
|
784
784
|
"DryRunProgressStatus": {
|
785
|
-
"shape": "
|
785
|
+
"shape": "S6j"
|
786
786
|
},
|
787
787
|
"DryRunConfig": {
|
788
788
|
"shape": "S2q"
|
789
789
|
},
|
790
790
|
"DryRunResults": {
|
791
|
-
"shape": "
|
791
|
+
"shape": "S6m"
|
792
792
|
}
|
793
793
|
}
|
794
794
|
}
|
@@ -801,7 +801,7 @@
|
|
801
801
|
"type": "structure",
|
802
802
|
"members": {
|
803
803
|
"Filters": {
|
804
|
-
"shape": "
|
804
|
+
"shape": "S6p"
|
805
805
|
},
|
806
806
|
"MaxResults": {
|
807
807
|
"type": "integer"
|
@@ -871,7 +871,7 @@
|
|
871
871
|
"members": {
|
872
872
|
"LimitName": {},
|
873
873
|
"LimitValues": {
|
874
|
-
"shape": "
|
874
|
+
"shape": "S76"
|
875
875
|
}
|
876
876
|
}
|
877
877
|
}
|
@@ -902,7 +902,7 @@
|
|
902
902
|
"members": {
|
903
903
|
"LimitName": {},
|
904
904
|
"LimitValues": {
|
905
|
-
"shape": "
|
905
|
+
"shape": "S76"
|
906
906
|
}
|
907
907
|
}
|
908
908
|
}
|
@@ -921,7 +921,7 @@
|
|
921
921
|
"type": "structure",
|
922
922
|
"members": {
|
923
923
|
"Filters": {
|
924
|
-
"shape": "
|
924
|
+
"shape": "S6p"
|
925
925
|
},
|
926
926
|
"MaxResults": {
|
927
927
|
"type": "integer"
|
@@ -935,7 +935,7 @@
|
|
935
935
|
"Connections": {
|
936
936
|
"type": "list",
|
937
937
|
"member": {
|
938
|
-
"shape": "
|
938
|
+
"shape": "S45"
|
939
939
|
}
|
940
940
|
},
|
941
941
|
"NextToken": {}
|
@@ -1027,7 +1027,7 @@
|
|
1027
1027
|
"CurrencyCode": {},
|
1028
1028
|
"PaymentOption": {},
|
1029
1029
|
"RecurringCharges": {
|
1030
|
-
"shape": "
|
1030
|
+
"shape": "S7w"
|
1031
1031
|
}
|
1032
1032
|
}
|
1033
1033
|
}
|
@@ -1093,7 +1093,7 @@
|
|
1093
1093
|
"State": {},
|
1094
1094
|
"PaymentOption": {},
|
1095
1095
|
"RecurringCharges": {
|
1096
|
-
"shape": "
|
1096
|
+
"shape": "S7w"
|
1097
1097
|
}
|
1098
1098
|
}
|
1099
1099
|
}
|
@@ -1127,7 +1127,7 @@
|
|
1127
1127
|
"VpcEndpoints": {
|
1128
1128
|
"type": "list",
|
1129
1129
|
"member": {
|
1130
|
-
"shape": "
|
1130
|
+
"shape": "S3w"
|
1131
1131
|
}
|
1132
1132
|
},
|
1133
1133
|
"VpcEndpointErrors": {
|
@@ -1198,7 +1198,7 @@
|
|
1198
1198
|
"members": {
|
1199
1199
|
"SourceVersion": {},
|
1200
1200
|
"TargetVersions": {
|
1201
|
-
"shape": "
|
1201
|
+
"shape": "S8h"
|
1202
1202
|
}
|
1203
1203
|
}
|
1204
1204
|
}
|
@@ -1245,6 +1245,9 @@
|
|
1245
1245
|
"CommitMessage": {},
|
1246
1246
|
"CreatedAt": {
|
1247
1247
|
"type": "timestamp"
|
1248
|
+
},
|
1249
|
+
"PluginProperties": {
|
1250
|
+
"shape": "S3m"
|
1248
1251
|
}
|
1249
1252
|
}
|
1250
1253
|
}
|
@@ -1402,7 +1405,7 @@
|
|
1402
1405
|
"type": "structure",
|
1403
1406
|
"members": {
|
1404
1407
|
"DomainPackageDetailsList": {
|
1405
|
-
"shape": "
|
1408
|
+
"shape": "S98"
|
1406
1409
|
},
|
1407
1410
|
"NextToken": {}
|
1408
1411
|
}
|
@@ -1516,7 +1519,7 @@
|
|
1516
1519
|
"type": "structure",
|
1517
1520
|
"members": {
|
1518
1521
|
"DomainPackageDetailsList": {
|
1519
|
-
"shape": "
|
1522
|
+
"shape": "S98"
|
1520
1523
|
},
|
1521
1524
|
"NextToken": {}
|
1522
1525
|
}
|
@@ -1554,7 +1557,7 @@
|
|
1554
1557
|
"ScheduledActions": {
|
1555
1558
|
"type": "list",
|
1556
1559
|
"member": {
|
1557
|
-
"shape": "
|
1560
|
+
"shape": "S9l"
|
1558
1561
|
}
|
1559
1562
|
},
|
1560
1563
|
"NextToken": {}
|
@@ -1610,7 +1613,7 @@
|
|
1610
1613
|
"type": "structure",
|
1611
1614
|
"members": {
|
1612
1615
|
"Versions": {
|
1613
|
-
"shape": "
|
1616
|
+
"shape": "S8h"
|
1614
1617
|
},
|
1615
1618
|
"NextToken": {}
|
1616
1619
|
}
|
@@ -1676,7 +1679,7 @@
|
|
1676
1679
|
],
|
1677
1680
|
"members": {
|
1678
1681
|
"VpcEndpointSummaryList": {
|
1679
|
-
"shape": "
|
1682
|
+
"shape": "S9z"
|
1680
1683
|
},
|
1681
1684
|
"NextToken": {}
|
1682
1685
|
}
|
@@ -1711,7 +1714,7 @@
|
|
1711
1714
|
],
|
1712
1715
|
"members": {
|
1713
1716
|
"VpcEndpointSummaryList": {
|
1714
|
-
"shape": "
|
1717
|
+
"shape": "S9z"
|
1715
1718
|
},
|
1716
1719
|
"NextToken": {}
|
1717
1720
|
}
|
@@ -1885,7 +1888,7 @@
|
|
1885
1888
|
"shape": "S22"
|
1886
1889
|
},
|
1887
1890
|
"AutoTuneOptions": {
|
1888
|
-
"shape": "
|
1891
|
+
"shape": "S5l"
|
1889
1892
|
},
|
1890
1893
|
"DryRun": {
|
1891
1894
|
"type": "boolean"
|
@@ -1906,13 +1909,13 @@
|
|
1906
1909
|
],
|
1907
1910
|
"members": {
|
1908
1911
|
"DomainConfig": {
|
1909
|
-
"shape": "
|
1912
|
+
"shape": "S53"
|
1910
1913
|
},
|
1911
1914
|
"DryRunResults": {
|
1912
|
-
"shape": "
|
1915
|
+
"shape": "S6m"
|
1913
1916
|
},
|
1914
1917
|
"DryRunProgressStatus": {
|
1915
|
-
"shape": "
|
1918
|
+
"shape": "S6j"
|
1916
1919
|
}
|
1917
1920
|
}
|
1918
1921
|
}
|
@@ -1975,7 +1978,7 @@
|
|
1975
1978
|
"type": "structure",
|
1976
1979
|
"members": {
|
1977
1980
|
"ScheduledAction": {
|
1978
|
-
"shape": "
|
1981
|
+
"shape": "S9l"
|
1979
1982
|
}
|
1980
1983
|
}
|
1981
1984
|
}
|
@@ -2004,7 +2007,7 @@
|
|
2004
2007
|
],
|
2005
2008
|
"members": {
|
2006
2009
|
"VpcEndpoint": {
|
2007
|
-
"shape": "
|
2010
|
+
"shape": "S3w"
|
2008
2011
|
}
|
2009
2012
|
}
|
2010
2013
|
}
|
@@ -2608,10 +2611,26 @@
|
|
2608
2611
|
"AvailablePackageVersion": {},
|
2609
2612
|
"ErrorDetails": {
|
2610
2613
|
"shape": "Su"
|
2614
|
+
},
|
2615
|
+
"EngineVersion": {},
|
2616
|
+
"AvailablePluginProperties": {
|
2617
|
+
"shape": "S3m"
|
2618
|
+
}
|
2619
|
+
}
|
2620
|
+
},
|
2621
|
+
"S3m": {
|
2622
|
+
"type": "structure",
|
2623
|
+
"members": {
|
2624
|
+
"Name": {},
|
2625
|
+
"Description": {},
|
2626
|
+
"Version": {},
|
2627
|
+
"ClassName": {},
|
2628
|
+
"UncompressedSizeInBytes": {
|
2629
|
+
"type": "long"
|
2611
2630
|
}
|
2612
2631
|
}
|
2613
2632
|
},
|
2614
|
-
"
|
2633
|
+
"S3w": {
|
2615
2634
|
"type": "structure",
|
2616
2635
|
"members": {
|
2617
2636
|
"VpcEndpointId": {},
|
@@ -2624,7 +2643,7 @@
|
|
2624
2643
|
"Endpoint": {}
|
2625
2644
|
}
|
2626
2645
|
},
|
2627
|
-
"
|
2646
|
+
"S45": {
|
2628
2647
|
"type": "structure",
|
2629
2648
|
"members": {
|
2630
2649
|
"LocalDomainInfo": {
|
@@ -2644,7 +2663,7 @@
|
|
2644
2663
|
}
|
2645
2664
|
}
|
2646
2665
|
},
|
2647
|
-
"
|
2666
|
+
"S4a": {
|
2648
2667
|
"type": "structure",
|
2649
2668
|
"members": {
|
2650
2669
|
"VpcEndpointId": {},
|
@@ -2653,7 +2672,7 @@
|
|
2653
2672
|
"Status": {}
|
2654
2673
|
}
|
2655
2674
|
},
|
2656
|
-
"
|
2675
|
+
"S53": {
|
2657
2676
|
"type": "structure",
|
2658
2677
|
"members": {
|
2659
2678
|
"EngineVersion": {
|
@@ -2665,7 +2684,7 @@
|
|
2665
2684
|
"members": {
|
2666
2685
|
"Options": {},
|
2667
2686
|
"Status": {
|
2668
|
-
"shape": "
|
2687
|
+
"shape": "S55"
|
2669
2688
|
}
|
2670
2689
|
}
|
2671
2690
|
},
|
@@ -2680,7 +2699,7 @@
|
|
2680
2699
|
"shape": "S1b"
|
2681
2700
|
},
|
2682
2701
|
"Status": {
|
2683
|
-
"shape": "
|
2702
|
+
"shape": "S55"
|
2684
2703
|
}
|
2685
2704
|
}
|
2686
2705
|
},
|
@@ -2695,7 +2714,7 @@
|
|
2695
2714
|
"shape": "S1h"
|
2696
2715
|
},
|
2697
2716
|
"Status": {
|
2698
|
-
"shape": "
|
2717
|
+
"shape": "S55"
|
2699
2718
|
}
|
2700
2719
|
}
|
2701
2720
|
},
|
@@ -2708,7 +2727,7 @@
|
|
2708
2727
|
"members": {
|
2709
2728
|
"Options": {},
|
2710
2729
|
"Status": {
|
2711
|
-
"shape": "
|
2730
|
+
"shape": "S55"
|
2712
2731
|
}
|
2713
2732
|
}
|
2714
2733
|
},
|
@@ -2723,7 +2742,7 @@
|
|
2723
2742
|
"shape": "S1k"
|
2724
2743
|
},
|
2725
2744
|
"Status": {
|
2726
|
-
"shape": "
|
2745
|
+
"shape": "S55"
|
2727
2746
|
}
|
2728
2747
|
}
|
2729
2748
|
},
|
@@ -2738,7 +2757,7 @@
|
|
2738
2757
|
"shape": "S2u"
|
2739
2758
|
},
|
2740
2759
|
"Status": {
|
2741
|
-
"shape": "
|
2760
|
+
"shape": "S55"
|
2742
2761
|
}
|
2743
2762
|
}
|
2744
2763
|
},
|
@@ -2753,7 +2772,7 @@
|
|
2753
2772
|
"shape": "S1n"
|
2754
2773
|
},
|
2755
2774
|
"Status": {
|
2756
|
-
"shape": "
|
2775
|
+
"shape": "S55"
|
2757
2776
|
}
|
2758
2777
|
}
|
2759
2778
|
},
|
@@ -2768,7 +2787,7 @@
|
|
2768
2787
|
"shape": "S1r"
|
2769
2788
|
},
|
2770
2789
|
"Status": {
|
2771
|
-
"shape": "
|
2790
|
+
"shape": "S55"
|
2772
2791
|
}
|
2773
2792
|
}
|
2774
2793
|
},
|
@@ -2783,7 +2802,7 @@
|
|
2783
2802
|
"shape": "S1t"
|
2784
2803
|
},
|
2785
2804
|
"Status": {
|
2786
|
-
"shape": "
|
2805
|
+
"shape": "S55"
|
2787
2806
|
}
|
2788
2807
|
}
|
2789
2808
|
},
|
@@ -2798,7 +2817,7 @@
|
|
2798
2817
|
"shape": "S1u"
|
2799
2818
|
},
|
2800
2819
|
"Status": {
|
2801
|
-
"shape": "
|
2820
|
+
"shape": "S55"
|
2802
2821
|
}
|
2803
2822
|
}
|
2804
2823
|
},
|
@@ -2809,7 +2828,7 @@
|
|
2809
2828
|
"shape": "S1v"
|
2810
2829
|
},
|
2811
2830
|
"Status": {
|
2812
|
-
"shape": "
|
2831
|
+
"shape": "S55"
|
2813
2832
|
}
|
2814
2833
|
}
|
2815
2834
|
},
|
@@ -2824,7 +2843,7 @@
|
|
2824
2843
|
"shape": "S1z"
|
2825
2844
|
},
|
2826
2845
|
"Status": {
|
2827
|
-
"shape": "
|
2846
|
+
"shape": "S55"
|
2828
2847
|
}
|
2829
2848
|
}
|
2830
2849
|
},
|
@@ -2839,7 +2858,7 @@
|
|
2839
2858
|
"shape": "S2v"
|
2840
2859
|
},
|
2841
2860
|
"Status": {
|
2842
|
-
"shape": "
|
2861
|
+
"shape": "S55"
|
2843
2862
|
}
|
2844
2863
|
}
|
2845
2864
|
},
|
@@ -2847,7 +2866,7 @@
|
|
2847
2866
|
"type": "structure",
|
2848
2867
|
"members": {
|
2849
2868
|
"Options": {
|
2850
|
-
"shape": "
|
2869
|
+
"shape": "S5l"
|
2851
2870
|
},
|
2852
2871
|
"Status": {
|
2853
2872
|
"type": "structure",
|
@@ -2885,7 +2904,7 @@
|
|
2885
2904
|
"shape": "S2j"
|
2886
2905
|
},
|
2887
2906
|
"Status": {
|
2888
|
-
"shape": "
|
2907
|
+
"shape": "S55"
|
2889
2908
|
}
|
2890
2909
|
}
|
2891
2910
|
},
|
@@ -2896,13 +2915,13 @@
|
|
2896
2915
|
"shape": "S2o"
|
2897
2916
|
},
|
2898
2917
|
"Status": {
|
2899
|
-
"shape": "
|
2918
|
+
"shape": "S55"
|
2900
2919
|
}
|
2901
2920
|
}
|
2902
2921
|
}
|
2903
2922
|
}
|
2904
2923
|
},
|
2905
|
-
"
|
2924
|
+
"S55": {
|
2906
2925
|
"type": "structure",
|
2907
2926
|
"required": [
|
2908
2927
|
"CreationDate",
|
@@ -2925,7 +2944,7 @@
|
|
2925
2944
|
}
|
2926
2945
|
}
|
2927
2946
|
},
|
2928
|
-
"
|
2947
|
+
"S5l": {
|
2929
2948
|
"type": "structure",
|
2930
2949
|
"members": {
|
2931
2950
|
"DesiredState": {},
|
@@ -2938,7 +2957,7 @@
|
|
2938
2957
|
}
|
2939
2958
|
}
|
2940
2959
|
},
|
2941
|
-
"
|
2960
|
+
"S6j": {
|
2942
2961
|
"type": "structure",
|
2943
2962
|
"required": [
|
2944
2963
|
"DryRunId",
|
@@ -2963,14 +2982,14 @@
|
|
2963
2982
|
}
|
2964
2983
|
}
|
2965
2984
|
},
|
2966
|
-
"
|
2985
|
+
"S6m": {
|
2967
2986
|
"type": "structure",
|
2968
2987
|
"members": {
|
2969
2988
|
"DeploymentType": {},
|
2970
2989
|
"Message": {}
|
2971
2990
|
}
|
2972
2991
|
},
|
2973
|
-
"
|
2992
|
+
"S6p": {
|
2974
2993
|
"type": "list",
|
2975
2994
|
"member": {
|
2976
2995
|
"type": "structure",
|
@@ -2983,11 +3002,11 @@
|
|
2983
3002
|
}
|
2984
3003
|
}
|
2985
3004
|
},
|
2986
|
-
"
|
3005
|
+
"S76": {
|
2987
3006
|
"type": "list",
|
2988
3007
|
"member": {}
|
2989
3008
|
},
|
2990
|
-
"
|
3009
|
+
"S7w": {
|
2991
3010
|
"type": "list",
|
2992
3011
|
"member": {
|
2993
3012
|
"type": "structure",
|
@@ -2999,17 +3018,17 @@
|
|
2999
3018
|
}
|
3000
3019
|
}
|
3001
3020
|
},
|
3002
|
-
"
|
3021
|
+
"S8h": {
|
3003
3022
|
"type": "list",
|
3004
3023
|
"member": {}
|
3005
3024
|
},
|
3006
|
-
"
|
3025
|
+
"S98": {
|
3007
3026
|
"type": "list",
|
3008
3027
|
"member": {
|
3009
3028
|
"shape": "Sn"
|
3010
3029
|
}
|
3011
3030
|
},
|
3012
|
-
"
|
3031
|
+
"S9l": {
|
3013
3032
|
"type": "structure",
|
3014
3033
|
"required": [
|
3015
3034
|
"Id",
|
@@ -3035,10 +3054,10 @@
|
|
3035
3054
|
}
|
3036
3055
|
}
|
3037
3056
|
},
|
3038
|
-
"
|
3057
|
+
"S9z": {
|
3039
3058
|
"type": "list",
|
3040
3059
|
"member": {
|
3041
|
-
"shape": "
|
3060
|
+
"shape": "S4a"
|
3042
3061
|
}
|
3043
3062
|
}
|
3044
3063
|
}
|