cdk-lambda-subminute 2.0.437 → 2.0.439
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 +4 -4
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/bedrock-2023-04-20.min.json +1059 -90
- package/node_modules/aws-sdk/apis/bedrock-2023-04-20.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/bedrock-agent-2023-06-05.min.json +41 -34
- package/node_modules/aws-sdk/apis/bedrock-agent-runtime-2023-07-26.min.json +68 -7
- package/node_modules/aws-sdk/apis/bedrock-runtime-2023-09-30.min.json +24 -0
- package/node_modules/aws-sdk/apis/ce-2017-10-25.min.json +2 -1
- package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +46 -35
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +146 -82
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +182 -19
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.min.json +165 -93
- package/node_modules/aws-sdk/apis/gamelift-2015-10-01.min.json +586 -188
- package/node_modules/aws-sdk/apis/gamelift-2015-10-01.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +235 -129
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/workspaces-web-2020-07-08.min.json +84 -43
- package/node_modules/aws-sdk/clients/bedrock.d.ts +1082 -118
- package/node_modules/aws-sdk/clients/bedrockagent.d.ts +24 -2
- package/node_modules/aws-sdk/clients/bedrockagentruntime.d.ts +65 -1
- package/node_modules/aws-sdk/clients/bedrockruntime.d.ts +37 -10
- package/node_modules/aws-sdk/clients/costexplorer.d.ts +11 -7
- package/node_modules/aws-sdk/clients/datasync.d.ts +67 -42
- package/node_modules/aws-sdk/clients/ec2.d.ts +112 -40
- package/node_modules/aws-sdk/clients/emrcontainers.d.ts +205 -0
- package/node_modules/aws-sdk/clients/entityresolution.d.ts +64 -0
- package/node_modules/aws-sdk/clients/gamelift.d.ts +592 -88
- package/node_modules/aws-sdk/clients/pi.d.ts +5 -5
- package/node_modules/aws-sdk/clients/rds.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ssm.d.ts +186 -6
- package/node_modules/aws-sdk/clients/workspacesweb.d.ts +89 -23
- 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 +17 -17
- package/node_modules/aws-sdk/dist/aws-sdk.js +984 -403
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +78 -78
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -62,6 +62,78 @@
|
|
62
62
|
},
|
63
63
|
"idempotent": true
|
64
64
|
},
|
65
|
+
"BatchDeleteUniqueId": {
|
66
|
+
"http": {
|
67
|
+
"method": "DELETE",
|
68
|
+
"requestUri": "/matchingworkflows/{workflowName}/uniqueids",
|
69
|
+
"responseCode": 200
|
70
|
+
},
|
71
|
+
"input": {
|
72
|
+
"type": "structure",
|
73
|
+
"required": [
|
74
|
+
"uniqueIds",
|
75
|
+
"workflowName"
|
76
|
+
],
|
77
|
+
"members": {
|
78
|
+
"inputSource": {
|
79
|
+
"location": "header",
|
80
|
+
"locationName": "inputSource"
|
81
|
+
},
|
82
|
+
"uniqueIds": {
|
83
|
+
"location": "header",
|
84
|
+
"locationName": "uniqueIds",
|
85
|
+
"type": "list",
|
86
|
+
"member": {}
|
87
|
+
},
|
88
|
+
"workflowName": {
|
89
|
+
"location": "uri",
|
90
|
+
"locationName": "workflowName"
|
91
|
+
}
|
92
|
+
}
|
93
|
+
},
|
94
|
+
"output": {
|
95
|
+
"type": "structure",
|
96
|
+
"required": [
|
97
|
+
"deleted",
|
98
|
+
"disconnectedUniqueIds",
|
99
|
+
"errors",
|
100
|
+
"status"
|
101
|
+
],
|
102
|
+
"members": {
|
103
|
+
"deleted": {
|
104
|
+
"type": "list",
|
105
|
+
"member": {
|
106
|
+
"type": "structure",
|
107
|
+
"required": [
|
108
|
+
"uniqueId"
|
109
|
+
],
|
110
|
+
"members": {
|
111
|
+
"uniqueId": {}
|
112
|
+
}
|
113
|
+
}
|
114
|
+
},
|
115
|
+
"disconnectedUniqueIds": {
|
116
|
+
"type": "list",
|
117
|
+
"member": {}
|
118
|
+
},
|
119
|
+
"errors": {
|
120
|
+
"type": "list",
|
121
|
+
"member": {
|
122
|
+
"type": "structure",
|
123
|
+
"required": [
|
124
|
+
"errorType",
|
125
|
+
"uniqueId"
|
126
|
+
],
|
127
|
+
"members": {
|
128
|
+
"errorType": {},
|
129
|
+
"uniqueId": {}
|
130
|
+
}
|
131
|
+
}
|
132
|
+
},
|
133
|
+
"status": {}
|
134
|
+
}
|
135
|
+
}
|
136
|
+
},
|
65
137
|
"CreateIdMappingWorkflow": {
|
66
138
|
"http": {
|
67
139
|
"requestUri": "/idmappingworkflows",
|
@@ -78,17 +150,17 @@
|
|
78
150
|
"members": {
|
79
151
|
"description": {},
|
80
152
|
"idMappingTechniques": {
|
81
|
-
"shape": "
|
153
|
+
"shape": "Ss"
|
82
154
|
},
|
83
155
|
"inputSourceConfig": {
|
84
|
-
"shape": "
|
156
|
+
"shape": "Sz"
|
85
157
|
},
|
86
158
|
"outputSourceConfig": {
|
87
|
-
"shape": "
|
159
|
+
"shape": "S13"
|
88
160
|
},
|
89
161
|
"roleArn": {},
|
90
162
|
"tags": {
|
91
|
-
"shape": "
|
163
|
+
"shape": "S17"
|
92
164
|
},
|
93
165
|
"workflowName": {}
|
94
166
|
}
|
@@ -105,13 +177,13 @@
|
|
105
177
|
"members": {
|
106
178
|
"description": {},
|
107
179
|
"idMappingTechniques": {
|
108
|
-
"shape": "
|
180
|
+
"shape": "Ss"
|
109
181
|
},
|
110
182
|
"inputSourceConfig": {
|
111
|
-
"shape": "
|
183
|
+
"shape": "Sz"
|
112
184
|
},
|
113
185
|
"outputSourceConfig": {
|
114
|
-
"shape": "
|
186
|
+
"shape": "S13"
|
115
187
|
},
|
116
188
|
"roleArn": {},
|
117
189
|
"workflowArn": {},
|
@@ -133,15 +205,15 @@
|
|
133
205
|
"members": {
|
134
206
|
"description": {},
|
135
207
|
"idMappingWorkflowProperties": {
|
136
|
-
"shape": "
|
208
|
+
"shape": "S1d"
|
137
209
|
},
|
138
210
|
"idNamespaceName": {},
|
139
211
|
"inputSourceConfig": {
|
140
|
-
"shape": "
|
212
|
+
"shape": "S1g"
|
141
213
|
},
|
142
214
|
"roleArn": {},
|
143
215
|
"tags": {
|
144
|
-
"shape": "
|
216
|
+
"shape": "S17"
|
145
217
|
},
|
146
218
|
"type": {}
|
147
219
|
}
|
@@ -161,16 +233,16 @@
|
|
161
233
|
},
|
162
234
|
"description": {},
|
163
235
|
"idMappingWorkflowProperties": {
|
164
|
-
"shape": "
|
236
|
+
"shape": "S1d"
|
165
237
|
},
|
166
238
|
"idNamespaceArn": {},
|
167
239
|
"idNamespaceName": {},
|
168
240
|
"inputSourceConfig": {
|
169
|
-
"shape": "
|
241
|
+
"shape": "S1g"
|
170
242
|
},
|
171
243
|
"roleArn": {},
|
172
244
|
"tags": {
|
173
|
-
"shape": "
|
245
|
+
"shape": "S17"
|
174
246
|
},
|
175
247
|
"type": {},
|
176
248
|
"updatedAt": {
|
@@ -196,20 +268,20 @@
|
|
196
268
|
"members": {
|
197
269
|
"description": {},
|
198
270
|
"incrementalRunConfig": {
|
199
|
-
"shape": "
|
271
|
+
"shape": "S1n"
|
200
272
|
},
|
201
273
|
"inputSourceConfig": {
|
202
|
-
"shape": "
|
274
|
+
"shape": "S1p"
|
203
275
|
},
|
204
276
|
"outputSourceConfig": {
|
205
|
-
"shape": "
|
277
|
+
"shape": "S1t"
|
206
278
|
},
|
207
279
|
"resolutionTechniques": {
|
208
|
-
"shape": "
|
280
|
+
"shape": "S1y"
|
209
281
|
},
|
210
282
|
"roleArn": {},
|
211
283
|
"tags": {
|
212
|
-
"shape": "
|
284
|
+
"shape": "S17"
|
213
285
|
},
|
214
286
|
"workflowName": {}
|
215
287
|
}
|
@@ -227,16 +299,16 @@
|
|
227
299
|
"members": {
|
228
300
|
"description": {},
|
229
301
|
"incrementalRunConfig": {
|
230
|
-
"shape": "
|
302
|
+
"shape": "S1n"
|
231
303
|
},
|
232
304
|
"inputSourceConfig": {
|
233
|
-
"shape": "
|
305
|
+
"shape": "S1p"
|
234
306
|
},
|
235
307
|
"outputSourceConfig": {
|
236
|
-
"shape": "
|
308
|
+
"shape": "S1t"
|
237
309
|
},
|
238
310
|
"resolutionTechniques": {
|
239
|
-
"shape": "
|
311
|
+
"shape": "S1y"
|
240
312
|
},
|
241
313
|
"roleArn": {},
|
242
314
|
"workflowArn": {},
|
@@ -258,11 +330,11 @@
|
|
258
330
|
"members": {
|
259
331
|
"description": {},
|
260
332
|
"mappedInputFields": {
|
261
|
-
"shape": "
|
333
|
+
"shape": "S2a"
|
262
334
|
},
|
263
335
|
"schemaName": {},
|
264
336
|
"tags": {
|
265
|
-
"shape": "
|
337
|
+
"shape": "S17"
|
266
338
|
}
|
267
339
|
}
|
268
340
|
},
|
@@ -277,7 +349,7 @@
|
|
277
349
|
"members": {
|
278
350
|
"description": {},
|
279
351
|
"mappedInputFields": {
|
280
|
-
"shape": "
|
352
|
+
"shape": "S2a"
|
281
353
|
},
|
282
354
|
"schemaArn": {},
|
283
355
|
"schemaName": {}
|
@@ -472,7 +544,7 @@
|
|
472
544
|
"type": "timestamp"
|
473
545
|
},
|
474
546
|
"errorDetails": {
|
475
|
-
"shape": "
|
547
|
+
"shape": "S2t"
|
476
548
|
},
|
477
549
|
"jobId": {},
|
478
550
|
"metrics": {
|
@@ -490,7 +562,7 @@
|
|
490
562
|
}
|
491
563
|
},
|
492
564
|
"outputSourceConfig": {
|
493
|
-
"shape": "
|
565
|
+
"shape": "S2x"
|
494
566
|
},
|
495
567
|
"startTime": {
|
496
568
|
"type": "timestamp"
|
@@ -534,17 +606,17 @@
|
|
534
606
|
},
|
535
607
|
"description": {},
|
536
608
|
"idMappingTechniques": {
|
537
|
-
"shape": "
|
609
|
+
"shape": "Ss"
|
538
610
|
},
|
539
611
|
"inputSourceConfig": {
|
540
|
-
"shape": "
|
612
|
+
"shape": "Sz"
|
541
613
|
},
|
542
614
|
"outputSourceConfig": {
|
543
|
-
"shape": "
|
615
|
+
"shape": "S13"
|
544
616
|
},
|
545
617
|
"roleArn": {},
|
546
618
|
"tags": {
|
547
|
-
"shape": "
|
619
|
+
"shape": "S17"
|
548
620
|
},
|
549
621
|
"updatedAt": {
|
550
622
|
"type": "timestamp"
|
@@ -587,16 +659,16 @@
|
|
587
659
|
},
|
588
660
|
"description": {},
|
589
661
|
"idMappingWorkflowProperties": {
|
590
|
-
"shape": "
|
662
|
+
"shape": "S1d"
|
591
663
|
},
|
592
664
|
"idNamespaceArn": {},
|
593
665
|
"idNamespaceName": {},
|
594
666
|
"inputSourceConfig": {
|
595
|
-
"shape": "
|
667
|
+
"shape": "S1g"
|
596
668
|
},
|
597
669
|
"roleArn": {},
|
598
670
|
"tags": {
|
599
|
-
"shape": "
|
671
|
+
"shape": "S17"
|
600
672
|
},
|
601
673
|
"type": {},
|
602
674
|
"updatedAt": {
|
@@ -675,7 +747,7 @@
|
|
675
747
|
"type": "timestamp"
|
676
748
|
},
|
677
749
|
"errorDetails": {
|
678
|
-
"shape": "
|
750
|
+
"shape": "S2t"
|
679
751
|
},
|
680
752
|
"jobId": {},
|
681
753
|
"metrics": {
|
@@ -753,20 +825,20 @@
|
|
753
825
|
},
|
754
826
|
"description": {},
|
755
827
|
"incrementalRunConfig": {
|
756
|
-
"shape": "
|
828
|
+
"shape": "S1n"
|
757
829
|
},
|
758
830
|
"inputSourceConfig": {
|
759
|
-
"shape": "
|
831
|
+
"shape": "S1p"
|
760
832
|
},
|
761
833
|
"outputSourceConfig": {
|
762
|
-
"shape": "
|
834
|
+
"shape": "S1t"
|
763
835
|
},
|
764
836
|
"resolutionTechniques": {
|
765
|
-
"shape": "
|
837
|
+
"shape": "S1y"
|
766
838
|
},
|
767
839
|
"roleArn": {},
|
768
840
|
"tags": {
|
769
|
-
"shape": "
|
841
|
+
"shape": "S17"
|
770
842
|
},
|
771
843
|
"updatedAt": {
|
772
844
|
"type": "timestamp"
|
@@ -877,7 +949,7 @@
|
|
877
949
|
}
|
878
950
|
},
|
879
951
|
"providerConfigurationDefinition": {
|
880
|
-
"shape": "
|
952
|
+
"shape": "Sx"
|
881
953
|
},
|
882
954
|
"providerEndpointConfiguration": {
|
883
955
|
"type": "structure",
|
@@ -901,17 +973,17 @@
|
|
901
973
|
"union": true
|
902
974
|
},
|
903
975
|
"providerEntityOutputDefinition": {
|
904
|
-
"shape": "
|
976
|
+
"shape": "Sx"
|
905
977
|
},
|
906
978
|
"providerIdNameSpaceConfiguration": {
|
907
979
|
"type": "structure",
|
908
980
|
"members": {
|
909
981
|
"description": {},
|
910
982
|
"providerSourceConfigurationDefinition": {
|
911
|
-
"shape": "
|
983
|
+
"shape": "Sx"
|
912
984
|
},
|
913
985
|
"providerTargetConfigurationDefinition": {
|
914
|
-
"shape": "
|
986
|
+
"shape": "Sx"
|
915
987
|
}
|
916
988
|
}
|
917
989
|
},
|
@@ -929,7 +1001,7 @@
|
|
929
1001
|
}
|
930
1002
|
},
|
931
1003
|
"providerJobConfiguration": {
|
932
|
-
"shape": "
|
1004
|
+
"shape": "Sx"
|
933
1005
|
},
|
934
1006
|
"providerName": {},
|
935
1007
|
"providerServiceArn": {},
|
@@ -976,12 +1048,12 @@
|
|
976
1048
|
"type": "boolean"
|
977
1049
|
},
|
978
1050
|
"mappedInputFields": {
|
979
|
-
"shape": "
|
1051
|
+
"shape": "S2a"
|
980
1052
|
},
|
981
1053
|
"schemaArn": {},
|
982
1054
|
"schemaName": {},
|
983
1055
|
"tags": {
|
984
|
-
"shape": "
|
1056
|
+
"shape": "S17"
|
985
1057
|
},
|
986
1058
|
"updatedAt": {
|
987
1059
|
"type": "timestamp"
|
@@ -1020,7 +1092,7 @@
|
|
1020
1092
|
"type": "structure",
|
1021
1093
|
"members": {
|
1022
1094
|
"jobs": {
|
1023
|
-
"shape": "
|
1095
|
+
"shape": "S45"
|
1024
1096
|
},
|
1025
1097
|
"nextToken": {}
|
1026
1098
|
}
|
@@ -1158,7 +1230,7 @@
|
|
1158
1230
|
"type": "structure",
|
1159
1231
|
"members": {
|
1160
1232
|
"jobs": {
|
1161
|
-
"shape": "
|
1233
|
+
"shape": "S45"
|
1162
1234
|
},
|
1163
1235
|
"nextToken": {}
|
1164
1236
|
}
|
@@ -1344,7 +1416,7 @@
|
|
1344
1416
|
],
|
1345
1417
|
"members": {
|
1346
1418
|
"tags": {
|
1347
|
-
"shape": "
|
1419
|
+
"shape": "S17"
|
1348
1420
|
}
|
1349
1421
|
}
|
1350
1422
|
}
|
@@ -1396,7 +1468,7 @@
|
|
1396
1468
|
],
|
1397
1469
|
"members": {
|
1398
1470
|
"outputSourceConfig": {
|
1399
|
-
"shape": "
|
1471
|
+
"shape": "S2x"
|
1400
1472
|
},
|
1401
1473
|
"workflowName": {
|
1402
1474
|
"location": "uri",
|
@@ -1412,7 +1484,7 @@
|
|
1412
1484
|
"members": {
|
1413
1485
|
"jobId": {},
|
1414
1486
|
"outputSourceConfig": {
|
1415
|
-
"shape": "
|
1487
|
+
"shape": "S2x"
|
1416
1488
|
}
|
1417
1489
|
}
|
1418
1490
|
}
|
@@ -1461,7 +1533,7 @@
|
|
1461
1533
|
"locationName": "resourceArn"
|
1462
1534
|
},
|
1463
1535
|
"tags": {
|
1464
|
-
"shape": "
|
1536
|
+
"shape": "S17"
|
1465
1537
|
}
|
1466
1538
|
}
|
1467
1539
|
},
|
@@ -1518,13 +1590,13 @@
|
|
1518
1590
|
"members": {
|
1519
1591
|
"description": {},
|
1520
1592
|
"idMappingTechniques": {
|
1521
|
-
"shape": "
|
1593
|
+
"shape": "Ss"
|
1522
1594
|
},
|
1523
1595
|
"inputSourceConfig": {
|
1524
|
-
"shape": "
|
1596
|
+
"shape": "Sz"
|
1525
1597
|
},
|
1526
1598
|
"outputSourceConfig": {
|
1527
|
-
"shape": "
|
1599
|
+
"shape": "S13"
|
1528
1600
|
},
|
1529
1601
|
"roleArn": {},
|
1530
1602
|
"workflowName": {
|
@@ -1545,13 +1617,13 @@
|
|
1545
1617
|
"members": {
|
1546
1618
|
"description": {},
|
1547
1619
|
"idMappingTechniques": {
|
1548
|
-
"shape": "
|
1620
|
+
"shape": "Ss"
|
1549
1621
|
},
|
1550
1622
|
"inputSourceConfig": {
|
1551
|
-
"shape": "
|
1623
|
+
"shape": "Sz"
|
1552
1624
|
},
|
1553
1625
|
"outputSourceConfig": {
|
1554
|
-
"shape": "
|
1626
|
+
"shape": "S13"
|
1555
1627
|
},
|
1556
1628
|
"roleArn": {},
|
1557
1629
|
"workflowArn": {},
|
@@ -1574,14 +1646,14 @@
|
|
1574
1646
|
"members": {
|
1575
1647
|
"description": {},
|
1576
1648
|
"idMappingWorkflowProperties": {
|
1577
|
-
"shape": "
|
1649
|
+
"shape": "S1d"
|
1578
1650
|
},
|
1579
1651
|
"idNamespaceName": {
|
1580
1652
|
"location": "uri",
|
1581
1653
|
"locationName": "idNamespaceName"
|
1582
1654
|
},
|
1583
1655
|
"inputSourceConfig": {
|
1584
|
-
"shape": "
|
1656
|
+
"shape": "S1g"
|
1585
1657
|
},
|
1586
1658
|
"roleArn": {}
|
1587
1659
|
}
|
@@ -1601,12 +1673,12 @@
|
|
1601
1673
|
},
|
1602
1674
|
"description": {},
|
1603
1675
|
"idMappingWorkflowProperties": {
|
1604
|
-
"shape": "
|
1676
|
+
"shape": "S1d"
|
1605
1677
|
},
|
1606
1678
|
"idNamespaceArn": {},
|
1607
1679
|
"idNamespaceName": {},
|
1608
1680
|
"inputSourceConfig": {
|
1609
|
-
"shape": "
|
1681
|
+
"shape": "S1g"
|
1610
1682
|
},
|
1611
1683
|
"roleArn": {},
|
1612
1684
|
"type": {},
|
@@ -1635,16 +1707,16 @@
|
|
1635
1707
|
"members": {
|
1636
1708
|
"description": {},
|
1637
1709
|
"incrementalRunConfig": {
|
1638
|
-
"shape": "
|
1710
|
+
"shape": "S1n"
|
1639
1711
|
},
|
1640
1712
|
"inputSourceConfig": {
|
1641
|
-
"shape": "
|
1713
|
+
"shape": "S1p"
|
1642
1714
|
},
|
1643
1715
|
"outputSourceConfig": {
|
1644
|
-
"shape": "
|
1716
|
+
"shape": "S1t"
|
1645
1717
|
},
|
1646
1718
|
"resolutionTechniques": {
|
1647
|
-
"shape": "
|
1719
|
+
"shape": "S1y"
|
1648
1720
|
},
|
1649
1721
|
"roleArn": {},
|
1650
1722
|
"workflowName": {
|
@@ -1665,16 +1737,16 @@
|
|
1665
1737
|
"members": {
|
1666
1738
|
"description": {},
|
1667
1739
|
"incrementalRunConfig": {
|
1668
|
-
"shape": "
|
1740
|
+
"shape": "S1n"
|
1669
1741
|
},
|
1670
1742
|
"inputSourceConfig": {
|
1671
|
-
"shape": "
|
1743
|
+
"shape": "S1p"
|
1672
1744
|
},
|
1673
1745
|
"outputSourceConfig": {
|
1674
|
-
"shape": "
|
1746
|
+
"shape": "S1t"
|
1675
1747
|
},
|
1676
1748
|
"resolutionTechniques": {
|
1677
|
-
"shape": "
|
1749
|
+
"shape": "S1y"
|
1678
1750
|
},
|
1679
1751
|
"roleArn": {},
|
1680
1752
|
"workflowName": {}
|
@@ -1697,7 +1769,7 @@
|
|
1697
1769
|
"members": {
|
1698
1770
|
"description": {},
|
1699
1771
|
"mappedInputFields": {
|
1700
|
-
"shape": "
|
1772
|
+
"shape": "S2a"
|
1701
1773
|
},
|
1702
1774
|
"schemaName": {
|
1703
1775
|
"location": "uri",
|
@@ -1715,7 +1787,7 @@
|
|
1715
1787
|
"members": {
|
1716
1788
|
"description": {},
|
1717
1789
|
"mappedInputFields": {
|
1718
|
-
"shape": "
|
1790
|
+
"shape": "S2a"
|
1719
1791
|
},
|
1720
1792
|
"schemaArn": {},
|
1721
1793
|
"schemaName": {}
|
@@ -1725,7 +1797,7 @@
|
|
1725
1797
|
}
|
1726
1798
|
},
|
1727
1799
|
"shapes": {
|
1728
|
-
"
|
1800
|
+
"Ss": {
|
1729
1801
|
"type": "structure",
|
1730
1802
|
"required": [
|
1731
1803
|
"idMappingType"
|
@@ -1733,11 +1805,11 @@
|
|
1733
1805
|
"members": {
|
1734
1806
|
"idMappingType": {},
|
1735
1807
|
"providerProperties": {
|
1736
|
-
"shape": "
|
1808
|
+
"shape": "Su"
|
1737
1809
|
}
|
1738
1810
|
}
|
1739
1811
|
},
|
1740
|
-
"
|
1812
|
+
"Su": {
|
1741
1813
|
"type": "structure",
|
1742
1814
|
"required": [
|
1743
1815
|
"providerServiceArn"
|
@@ -1753,17 +1825,17 @@
|
|
1753
1825
|
}
|
1754
1826
|
},
|
1755
1827
|
"providerConfiguration": {
|
1756
|
-
"shape": "
|
1828
|
+
"shape": "Sx"
|
1757
1829
|
},
|
1758
1830
|
"providerServiceArn": {}
|
1759
1831
|
}
|
1760
1832
|
},
|
1761
|
-
"
|
1833
|
+
"Sx": {
|
1762
1834
|
"type": "structure",
|
1763
1835
|
"members": {},
|
1764
1836
|
"document": true
|
1765
1837
|
},
|
1766
|
-
"
|
1838
|
+
"Sz": {
|
1767
1839
|
"type": "list",
|
1768
1840
|
"member": {
|
1769
1841
|
"type": "structure",
|
@@ -1777,7 +1849,7 @@
|
|
1777
1849
|
}
|
1778
1850
|
}
|
1779
1851
|
},
|
1780
|
-
"
|
1852
|
+
"S13": {
|
1781
1853
|
"type": "list",
|
1782
1854
|
"member": {
|
1783
1855
|
"type": "structure",
|
@@ -1790,12 +1862,12 @@
|
|
1790
1862
|
}
|
1791
1863
|
}
|
1792
1864
|
},
|
1793
|
-
"
|
1865
|
+
"S17": {
|
1794
1866
|
"type": "map",
|
1795
1867
|
"key": {},
|
1796
1868
|
"value": {}
|
1797
1869
|
},
|
1798
|
-
"
|
1870
|
+
"S1d": {
|
1799
1871
|
"type": "list",
|
1800
1872
|
"member": {
|
1801
1873
|
"type": "structure",
|
@@ -1811,7 +1883,7 @@
|
|
1811
1883
|
],
|
1812
1884
|
"members": {
|
1813
1885
|
"providerConfiguration": {
|
1814
|
-
"shape": "
|
1886
|
+
"shape": "Sx"
|
1815
1887
|
},
|
1816
1888
|
"providerServiceArn": {}
|
1817
1889
|
}
|
@@ -1819,7 +1891,7 @@
|
|
1819
1891
|
}
|
1820
1892
|
}
|
1821
1893
|
},
|
1822
|
-
"
|
1894
|
+
"S1g": {
|
1823
1895
|
"type": "list",
|
1824
1896
|
"member": {
|
1825
1897
|
"type": "structure",
|
@@ -1832,13 +1904,13 @@
|
|
1832
1904
|
}
|
1833
1905
|
}
|
1834
1906
|
},
|
1835
|
-
"
|
1907
|
+
"S1n": {
|
1836
1908
|
"type": "structure",
|
1837
1909
|
"members": {
|
1838
1910
|
"incrementalRunType": {}
|
1839
1911
|
}
|
1840
1912
|
},
|
1841
|
-
"
|
1913
|
+
"S1p": {
|
1842
1914
|
"type": "list",
|
1843
1915
|
"member": {
|
1844
1916
|
"type": "structure",
|
@@ -1855,7 +1927,7 @@
|
|
1855
1927
|
}
|
1856
1928
|
}
|
1857
1929
|
},
|
1858
|
-
"
|
1930
|
+
"S1t": {
|
1859
1931
|
"type": "list",
|
1860
1932
|
"member": {
|
1861
1933
|
"type": "structure",
|
@@ -1887,14 +1959,14 @@
|
|
1887
1959
|
}
|
1888
1960
|
}
|
1889
1961
|
},
|
1890
|
-
"
|
1962
|
+
"S1y": {
|
1891
1963
|
"type": "structure",
|
1892
1964
|
"required": [
|
1893
1965
|
"resolutionType"
|
1894
1966
|
],
|
1895
1967
|
"members": {
|
1896
1968
|
"providerProperties": {
|
1897
|
-
"shape": "
|
1969
|
+
"shape": "Su"
|
1898
1970
|
},
|
1899
1971
|
"resolutionType": {},
|
1900
1972
|
"ruleBasedProperties": {
|
@@ -1926,7 +1998,7 @@
|
|
1926
1998
|
}
|
1927
1999
|
}
|
1928
2000
|
},
|
1929
|
-
"
|
2001
|
+
"S2a": {
|
1930
2002
|
"type": "list",
|
1931
2003
|
"member": {
|
1932
2004
|
"type": "structure",
|
@@ -1943,13 +2015,13 @@
|
|
1943
2015
|
}
|
1944
2016
|
}
|
1945
2017
|
},
|
1946
|
-
"
|
2018
|
+
"S2t": {
|
1947
2019
|
"type": "structure",
|
1948
2020
|
"members": {
|
1949
2021
|
"errorMessage": {}
|
1950
2022
|
}
|
1951
2023
|
},
|
1952
|
-
"
|
2024
|
+
"S2x": {
|
1953
2025
|
"type": "list",
|
1954
2026
|
"member": {
|
1955
2027
|
"type": "structure",
|
@@ -1964,7 +2036,7 @@
|
|
1964
2036
|
}
|
1965
2037
|
}
|
1966
2038
|
},
|
1967
|
-
"
|
2039
|
+
"S45": {
|
1968
2040
|
"type": "list",
|
1969
2041
|
"member": {
|
1970
2042
|
"type": "structure",
|