cdk-lambda-subminute 2.0.431 → 2.0.432
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/README.md +1 -1
- package/node_modules/aws-sdk/apis/bedrock-agent-2023-06-05.min.json +1 -2
- package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +56 -55
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.min.json +602 -82
- package/node_modules/aws-sdk/apis/entityresolution-2018-05-10.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +23 -3
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +35 -25
- package/node_modules/aws-sdk/apis/m2-2021-04-28.min.json +83 -6
- package/node_modules/aws-sdk/apis/mediapackagev2-2022-12-25.min.json +131 -8
- package/node_modules/aws-sdk/apis/outposts-2019-12-03.min.json +299 -43
- package/node_modules/aws-sdk/apis/outposts-2019-12-03.paginators.json +12 -0
- package/node_modules/aws-sdk/apis/qbusiness-2023-11-27.min.json +120 -87
- package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.min.json +203 -82
- package/node_modules/aws-sdk/clients/bedrockagent.d.ts +35 -35
- package/node_modules/aws-sdk/clients/ec2.d.ts +33 -33
- package/node_modules/aws-sdk/clients/emrserverless.d.ts +5 -0
- package/node_modules/aws-sdk/clients/entityresolution.d.ts +604 -19
- package/node_modules/aws-sdk/clients/iotwireless.d.ts +71 -40
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +18 -2
- package/node_modules/aws-sdk/clients/m2.d.ts +88 -1
- package/node_modules/aws-sdk/clients/mediapackagev2.d.ts +154 -0
- package/node_modules/aws-sdk/clients/outposts.d.ts +263 -4
- package/node_modules/aws-sdk/clients/qbusiness.d.ts +381 -321
- package/node_modules/aws-sdk/clients/wellarchitected.d.ts +182 -4
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +15 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +7 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +8 -8
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/region_config_data.json +4 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -13,6 +13,55 @@
|
|
13
13
|
"uid": "entityresolution-2018-05-10"
|
14
14
|
},
|
15
15
|
"operations": {
|
16
|
+
"AddPolicyStatement": {
|
17
|
+
"http": {
|
18
|
+
"requestUri": "/policies/{arn}/{statementId}",
|
19
|
+
"responseCode": 200
|
20
|
+
},
|
21
|
+
"input": {
|
22
|
+
"type": "structure",
|
23
|
+
"required": [
|
24
|
+
"action",
|
25
|
+
"arn",
|
26
|
+
"effect",
|
27
|
+
"principal",
|
28
|
+
"statementId"
|
29
|
+
],
|
30
|
+
"members": {
|
31
|
+
"action": {
|
32
|
+
"type": "list",
|
33
|
+
"member": {}
|
34
|
+
},
|
35
|
+
"arn": {
|
36
|
+
"location": "uri",
|
37
|
+
"locationName": "arn"
|
38
|
+
},
|
39
|
+
"condition": {},
|
40
|
+
"effect": {},
|
41
|
+
"principal": {
|
42
|
+
"type": "list",
|
43
|
+
"member": {}
|
44
|
+
},
|
45
|
+
"statementId": {
|
46
|
+
"location": "uri",
|
47
|
+
"locationName": "statementId"
|
48
|
+
}
|
49
|
+
}
|
50
|
+
},
|
51
|
+
"output": {
|
52
|
+
"type": "structure",
|
53
|
+
"required": [
|
54
|
+
"arn",
|
55
|
+
"token"
|
56
|
+
],
|
57
|
+
"members": {
|
58
|
+
"arn": {},
|
59
|
+
"policy": {},
|
60
|
+
"token": {}
|
61
|
+
}
|
62
|
+
},
|
63
|
+
"idempotent": true
|
64
|
+
},
|
16
65
|
"CreateIdMappingWorkflow": {
|
17
66
|
"http": {
|
18
67
|
"requestUri": "/idmappingworkflows",
|
@@ -23,24 +72,23 @@
|
|
23
72
|
"required": [
|
24
73
|
"idMappingTechniques",
|
25
74
|
"inputSourceConfig",
|
26
|
-
"outputSourceConfig",
|
27
75
|
"roleArn",
|
28
76
|
"workflowName"
|
29
77
|
],
|
30
78
|
"members": {
|
31
79
|
"description": {},
|
32
80
|
"idMappingTechniques": {
|
33
|
-
"shape": "
|
81
|
+
"shape": "Sf"
|
34
82
|
},
|
35
83
|
"inputSourceConfig": {
|
36
|
-
"shape": "
|
84
|
+
"shape": "Sm"
|
37
85
|
},
|
38
86
|
"outputSourceConfig": {
|
39
|
-
"shape": "
|
87
|
+
"shape": "Sr"
|
40
88
|
},
|
41
89
|
"roleArn": {},
|
42
90
|
"tags": {
|
43
|
-
"shape": "
|
91
|
+
"shape": "Sv"
|
44
92
|
},
|
45
93
|
"workflowName": {}
|
46
94
|
}
|
@@ -50,7 +98,6 @@
|
|
50
98
|
"required": [
|
51
99
|
"idMappingTechniques",
|
52
100
|
"inputSourceConfig",
|
53
|
-
"outputSourceConfig",
|
54
101
|
"roleArn",
|
55
102
|
"workflowArn",
|
56
103
|
"workflowName"
|
@@ -58,13 +105,13 @@
|
|
58
105
|
"members": {
|
59
106
|
"description": {},
|
60
107
|
"idMappingTechniques": {
|
61
|
-
"shape": "
|
108
|
+
"shape": "Sf"
|
62
109
|
},
|
63
110
|
"inputSourceConfig": {
|
64
|
-
"shape": "
|
111
|
+
"shape": "Sm"
|
65
112
|
},
|
66
113
|
"outputSourceConfig": {
|
67
|
-
"shape": "
|
114
|
+
"shape": "Sr"
|
68
115
|
},
|
69
116
|
"roleArn": {},
|
70
117
|
"workflowArn": {},
|
@@ -72,6 +119,66 @@
|
|
72
119
|
}
|
73
120
|
}
|
74
121
|
},
|
122
|
+
"CreateIdNamespace": {
|
123
|
+
"http": {
|
124
|
+
"requestUri": "/idnamespaces",
|
125
|
+
"responseCode": 200
|
126
|
+
},
|
127
|
+
"input": {
|
128
|
+
"type": "structure",
|
129
|
+
"required": [
|
130
|
+
"idNamespaceName",
|
131
|
+
"type"
|
132
|
+
],
|
133
|
+
"members": {
|
134
|
+
"description": {},
|
135
|
+
"idMappingWorkflowProperties": {
|
136
|
+
"shape": "S11"
|
137
|
+
},
|
138
|
+
"idNamespaceName": {},
|
139
|
+
"inputSourceConfig": {
|
140
|
+
"shape": "S14"
|
141
|
+
},
|
142
|
+
"roleArn": {},
|
143
|
+
"tags": {
|
144
|
+
"shape": "Sv"
|
145
|
+
},
|
146
|
+
"type": {}
|
147
|
+
}
|
148
|
+
},
|
149
|
+
"output": {
|
150
|
+
"type": "structure",
|
151
|
+
"required": [
|
152
|
+
"createdAt",
|
153
|
+
"idNamespaceArn",
|
154
|
+
"idNamespaceName",
|
155
|
+
"type",
|
156
|
+
"updatedAt"
|
157
|
+
],
|
158
|
+
"members": {
|
159
|
+
"createdAt": {
|
160
|
+
"type": "timestamp"
|
161
|
+
},
|
162
|
+
"description": {},
|
163
|
+
"idMappingWorkflowProperties": {
|
164
|
+
"shape": "S11"
|
165
|
+
},
|
166
|
+
"idNamespaceArn": {},
|
167
|
+
"idNamespaceName": {},
|
168
|
+
"inputSourceConfig": {
|
169
|
+
"shape": "S14"
|
170
|
+
},
|
171
|
+
"roleArn": {},
|
172
|
+
"tags": {
|
173
|
+
"shape": "Sv"
|
174
|
+
},
|
175
|
+
"type": {},
|
176
|
+
"updatedAt": {
|
177
|
+
"type": "timestamp"
|
178
|
+
}
|
179
|
+
}
|
180
|
+
}
|
181
|
+
},
|
75
182
|
"CreateMatchingWorkflow": {
|
76
183
|
"http": {
|
77
184
|
"requestUri": "/matchingworkflows",
|
@@ -89,20 +196,20 @@
|
|
89
196
|
"members": {
|
90
197
|
"description": {},
|
91
198
|
"incrementalRunConfig": {
|
92
|
-
"shape": "
|
199
|
+
"shape": "S1b"
|
93
200
|
},
|
94
201
|
"inputSourceConfig": {
|
95
|
-
"shape": "
|
202
|
+
"shape": "S1d"
|
96
203
|
},
|
97
204
|
"outputSourceConfig": {
|
98
|
-
"shape": "
|
205
|
+
"shape": "S1h"
|
99
206
|
},
|
100
207
|
"resolutionTechniques": {
|
101
|
-
"shape": "
|
208
|
+
"shape": "S1m"
|
102
209
|
},
|
103
210
|
"roleArn": {},
|
104
211
|
"tags": {
|
105
|
-
"shape": "
|
212
|
+
"shape": "Sv"
|
106
213
|
},
|
107
214
|
"workflowName": {}
|
108
215
|
}
|
@@ -120,16 +227,16 @@
|
|
120
227
|
"members": {
|
121
228
|
"description": {},
|
122
229
|
"incrementalRunConfig": {
|
123
|
-
"shape": "
|
230
|
+
"shape": "S1b"
|
124
231
|
},
|
125
232
|
"inputSourceConfig": {
|
126
|
-
"shape": "
|
233
|
+
"shape": "S1d"
|
127
234
|
},
|
128
235
|
"outputSourceConfig": {
|
129
|
-
"shape": "
|
236
|
+
"shape": "S1h"
|
130
237
|
},
|
131
238
|
"resolutionTechniques": {
|
132
|
-
"shape": "
|
239
|
+
"shape": "S1m"
|
133
240
|
},
|
134
241
|
"roleArn": {},
|
135
242
|
"workflowArn": {},
|
@@ -151,11 +258,11 @@
|
|
151
258
|
"members": {
|
152
259
|
"description": {},
|
153
260
|
"mappedInputFields": {
|
154
|
-
"shape": "
|
261
|
+
"shape": "S1y"
|
155
262
|
},
|
156
263
|
"schemaName": {},
|
157
264
|
"tags": {
|
158
|
-
"shape": "
|
265
|
+
"shape": "Sv"
|
159
266
|
}
|
160
267
|
}
|
161
268
|
},
|
@@ -170,7 +277,7 @@
|
|
170
277
|
"members": {
|
171
278
|
"description": {},
|
172
279
|
"mappedInputFields": {
|
173
|
-
"shape": "
|
280
|
+
"shape": "S1y"
|
174
281
|
},
|
175
282
|
"schemaArn": {},
|
176
283
|
"schemaName": {}
|
@@ -206,6 +313,35 @@
|
|
206
313
|
},
|
207
314
|
"idempotent": true
|
208
315
|
},
|
316
|
+
"DeleteIdNamespace": {
|
317
|
+
"http": {
|
318
|
+
"method": "DELETE",
|
319
|
+
"requestUri": "/idnamespaces/{idNamespaceName}",
|
320
|
+
"responseCode": 200
|
321
|
+
},
|
322
|
+
"input": {
|
323
|
+
"type": "structure",
|
324
|
+
"required": [
|
325
|
+
"idNamespaceName"
|
326
|
+
],
|
327
|
+
"members": {
|
328
|
+
"idNamespaceName": {
|
329
|
+
"location": "uri",
|
330
|
+
"locationName": "idNamespaceName"
|
331
|
+
}
|
332
|
+
}
|
333
|
+
},
|
334
|
+
"output": {
|
335
|
+
"type": "structure",
|
336
|
+
"required": [
|
337
|
+
"message"
|
338
|
+
],
|
339
|
+
"members": {
|
340
|
+
"message": {}
|
341
|
+
}
|
342
|
+
},
|
343
|
+
"idempotent": true
|
344
|
+
},
|
209
345
|
"DeleteMatchingWorkflow": {
|
210
346
|
"http": {
|
211
347
|
"method": "DELETE",
|
@@ -235,6 +371,43 @@
|
|
235
371
|
},
|
236
372
|
"idempotent": true
|
237
373
|
},
|
374
|
+
"DeletePolicyStatement": {
|
375
|
+
"http": {
|
376
|
+
"method": "DELETE",
|
377
|
+
"requestUri": "/policies/{arn}/{statementId}",
|
378
|
+
"responseCode": 200
|
379
|
+
},
|
380
|
+
"input": {
|
381
|
+
"type": "structure",
|
382
|
+
"required": [
|
383
|
+
"arn",
|
384
|
+
"statementId"
|
385
|
+
],
|
386
|
+
"members": {
|
387
|
+
"arn": {
|
388
|
+
"location": "uri",
|
389
|
+
"locationName": "arn"
|
390
|
+
},
|
391
|
+
"statementId": {
|
392
|
+
"location": "uri",
|
393
|
+
"locationName": "statementId"
|
394
|
+
}
|
395
|
+
}
|
396
|
+
},
|
397
|
+
"output": {
|
398
|
+
"type": "structure",
|
399
|
+
"required": [
|
400
|
+
"arn",
|
401
|
+
"token"
|
402
|
+
],
|
403
|
+
"members": {
|
404
|
+
"arn": {},
|
405
|
+
"policy": {},
|
406
|
+
"token": {}
|
407
|
+
}
|
408
|
+
},
|
409
|
+
"idempotent": true
|
410
|
+
},
|
238
411
|
"DeleteSchemaMapping": {
|
239
412
|
"http": {
|
240
413
|
"method": "DELETE",
|
@@ -299,7 +472,7 @@
|
|
299
472
|
"type": "timestamp"
|
300
473
|
},
|
301
474
|
"errorDetails": {
|
302
|
-
"shape": "
|
475
|
+
"shape": "S2h"
|
303
476
|
},
|
304
477
|
"jobId": {},
|
305
478
|
"metrics": {
|
@@ -316,6 +489,9 @@
|
|
316
489
|
}
|
317
490
|
}
|
318
491
|
},
|
492
|
+
"outputSourceConfig": {
|
493
|
+
"shape": "S2l"
|
494
|
+
},
|
319
495
|
"startTime": {
|
320
496
|
"type": "timestamp"
|
321
497
|
},
|
@@ -347,7 +523,6 @@
|
|
347
523
|
"createdAt",
|
348
524
|
"idMappingTechniques",
|
349
525
|
"inputSourceConfig",
|
350
|
-
"outputSourceConfig",
|
351
526
|
"roleArn",
|
352
527
|
"updatedAt",
|
353
528
|
"workflowArn",
|
@@ -359,17 +534,17 @@
|
|
359
534
|
},
|
360
535
|
"description": {},
|
361
536
|
"idMappingTechniques": {
|
362
|
-
"shape": "
|
537
|
+
"shape": "Sf"
|
363
538
|
},
|
364
539
|
"inputSourceConfig": {
|
365
|
-
"shape": "
|
540
|
+
"shape": "Sm"
|
366
541
|
},
|
367
542
|
"outputSourceConfig": {
|
368
|
-
"shape": "
|
543
|
+
"shape": "Sr"
|
369
544
|
},
|
370
545
|
"roleArn": {},
|
371
546
|
"tags": {
|
372
|
-
"shape": "
|
547
|
+
"shape": "Sv"
|
373
548
|
},
|
374
549
|
"updatedAt": {
|
375
550
|
"type": "timestamp"
|
@@ -379,6 +554,57 @@
|
|
379
554
|
}
|
380
555
|
}
|
381
556
|
},
|
557
|
+
"GetIdNamespace": {
|
558
|
+
"http": {
|
559
|
+
"method": "GET",
|
560
|
+
"requestUri": "/idnamespaces/{idNamespaceName}",
|
561
|
+
"responseCode": 200
|
562
|
+
},
|
563
|
+
"input": {
|
564
|
+
"type": "structure",
|
565
|
+
"required": [
|
566
|
+
"idNamespaceName"
|
567
|
+
],
|
568
|
+
"members": {
|
569
|
+
"idNamespaceName": {
|
570
|
+
"location": "uri",
|
571
|
+
"locationName": "idNamespaceName"
|
572
|
+
}
|
573
|
+
}
|
574
|
+
},
|
575
|
+
"output": {
|
576
|
+
"type": "structure",
|
577
|
+
"required": [
|
578
|
+
"createdAt",
|
579
|
+
"idNamespaceArn",
|
580
|
+
"idNamespaceName",
|
581
|
+
"type",
|
582
|
+
"updatedAt"
|
583
|
+
],
|
584
|
+
"members": {
|
585
|
+
"createdAt": {
|
586
|
+
"type": "timestamp"
|
587
|
+
},
|
588
|
+
"description": {},
|
589
|
+
"idMappingWorkflowProperties": {
|
590
|
+
"shape": "S11"
|
591
|
+
},
|
592
|
+
"idNamespaceArn": {},
|
593
|
+
"idNamespaceName": {},
|
594
|
+
"inputSourceConfig": {
|
595
|
+
"shape": "S14"
|
596
|
+
},
|
597
|
+
"roleArn": {},
|
598
|
+
"tags": {
|
599
|
+
"shape": "Sv"
|
600
|
+
},
|
601
|
+
"type": {},
|
602
|
+
"updatedAt": {
|
603
|
+
"type": "timestamp"
|
604
|
+
}
|
605
|
+
}
|
606
|
+
}
|
607
|
+
},
|
382
608
|
"GetMatchId": {
|
383
609
|
"http": {
|
384
610
|
"requestUri": "/matchingworkflows/{workflowName}/matches",
|
@@ -391,6 +617,9 @@
|
|
391
617
|
"workflowName"
|
392
618
|
],
|
393
619
|
"members": {
|
620
|
+
"applyNormalization": {
|
621
|
+
"type": "boolean"
|
622
|
+
},
|
394
623
|
"record": {
|
395
624
|
"type": "map",
|
396
625
|
"key": {},
|
@@ -406,7 +635,8 @@
|
|
406
635
|
"output": {
|
407
636
|
"type": "structure",
|
408
637
|
"members": {
|
409
|
-
"matchId": {}
|
638
|
+
"matchId": {},
|
639
|
+
"matchRule": {}
|
410
640
|
}
|
411
641
|
}
|
412
642
|
},
|
@@ -445,7 +675,7 @@
|
|
445
675
|
"type": "timestamp"
|
446
676
|
},
|
447
677
|
"errorDetails": {
|
448
|
-
"shape": "
|
678
|
+
"shape": "S2h"
|
449
679
|
},
|
450
680
|
"jobId": {},
|
451
681
|
"metrics": {
|
@@ -465,6 +695,21 @@
|
|
465
695
|
}
|
466
696
|
}
|
467
697
|
},
|
698
|
+
"outputSourceConfig": {
|
699
|
+
"type": "list",
|
700
|
+
"member": {
|
701
|
+
"type": "structure",
|
702
|
+
"required": [
|
703
|
+
"outputS3Path",
|
704
|
+
"roleArn"
|
705
|
+
],
|
706
|
+
"members": {
|
707
|
+
"KMSArn": {},
|
708
|
+
"outputS3Path": {},
|
709
|
+
"roleArn": {}
|
710
|
+
}
|
711
|
+
}
|
712
|
+
},
|
468
713
|
"startTime": {
|
469
714
|
"type": "timestamp"
|
470
715
|
},
|
@@ -508,20 +753,20 @@
|
|
508
753
|
},
|
509
754
|
"description": {},
|
510
755
|
"incrementalRunConfig": {
|
511
|
-
"shape": "
|
756
|
+
"shape": "S1b"
|
512
757
|
},
|
513
758
|
"inputSourceConfig": {
|
514
|
-
"shape": "
|
759
|
+
"shape": "S1d"
|
515
760
|
},
|
516
761
|
"outputSourceConfig": {
|
517
|
-
"shape": "
|
762
|
+
"shape": "S1h"
|
518
763
|
},
|
519
764
|
"resolutionTechniques": {
|
520
|
-
"shape": "
|
765
|
+
"shape": "S1m"
|
521
766
|
},
|
522
767
|
"roleArn": {},
|
523
768
|
"tags": {
|
524
|
-
"shape": "
|
769
|
+
"shape": "Sv"
|
525
770
|
},
|
526
771
|
"updatedAt": {
|
527
772
|
"type": "timestamp"
|
@@ -531,6 +776,37 @@
|
|
531
776
|
}
|
532
777
|
}
|
533
778
|
},
|
779
|
+
"GetPolicy": {
|
780
|
+
"http": {
|
781
|
+
"method": "GET",
|
782
|
+
"requestUri": "/policies/{arn}",
|
783
|
+
"responseCode": 200
|
784
|
+
},
|
785
|
+
"input": {
|
786
|
+
"type": "structure",
|
787
|
+
"required": [
|
788
|
+
"arn"
|
789
|
+
],
|
790
|
+
"members": {
|
791
|
+
"arn": {
|
792
|
+
"location": "uri",
|
793
|
+
"locationName": "arn"
|
794
|
+
}
|
795
|
+
}
|
796
|
+
},
|
797
|
+
"output": {
|
798
|
+
"type": "structure",
|
799
|
+
"required": [
|
800
|
+
"arn",
|
801
|
+
"token"
|
802
|
+
],
|
803
|
+
"members": {
|
804
|
+
"arn": {},
|
805
|
+
"policy": {},
|
806
|
+
"token": {}
|
807
|
+
}
|
808
|
+
}
|
809
|
+
},
|
534
810
|
"GetProviderService": {
|
535
811
|
"http": {
|
536
812
|
"method": "GET",
|
@@ -570,8 +846,38 @@
|
|
570
846
|
"anonymizedOutput": {
|
571
847
|
"type": "boolean"
|
572
848
|
},
|
849
|
+
"providerComponentSchema": {
|
850
|
+
"type": "structure",
|
851
|
+
"members": {
|
852
|
+
"providerSchemaAttributes": {
|
853
|
+
"type": "list",
|
854
|
+
"member": {
|
855
|
+
"type": "structure",
|
856
|
+
"required": [
|
857
|
+
"fieldName",
|
858
|
+
"type"
|
859
|
+
],
|
860
|
+
"members": {
|
861
|
+
"fieldName": {},
|
862
|
+
"hashing": {
|
863
|
+
"type": "boolean"
|
864
|
+
},
|
865
|
+
"subType": {},
|
866
|
+
"type": {}
|
867
|
+
}
|
868
|
+
}
|
869
|
+
},
|
870
|
+
"schemas": {
|
871
|
+
"type": "list",
|
872
|
+
"member": {
|
873
|
+
"type": "list",
|
874
|
+
"member": {}
|
875
|
+
}
|
876
|
+
}
|
877
|
+
}
|
878
|
+
},
|
573
879
|
"providerConfigurationDefinition": {
|
574
|
-
"shape": "
|
880
|
+
"shape": "Sk"
|
575
881
|
},
|
576
882
|
"providerEndpointConfiguration": {
|
577
883
|
"type": "structure",
|
@@ -595,7 +901,19 @@
|
|
595
901
|
"union": true
|
596
902
|
},
|
597
903
|
"providerEntityOutputDefinition": {
|
598
|
-
"shape": "
|
904
|
+
"shape": "Sk"
|
905
|
+
},
|
906
|
+
"providerIdNameSpaceConfiguration": {
|
907
|
+
"type": "structure",
|
908
|
+
"members": {
|
909
|
+
"description": {},
|
910
|
+
"providerSourceConfigurationDefinition": {
|
911
|
+
"shape": "Sk"
|
912
|
+
},
|
913
|
+
"providerTargetConfigurationDefinition": {
|
914
|
+
"shape": "Sk"
|
915
|
+
}
|
916
|
+
}
|
599
917
|
},
|
600
918
|
"providerIntermediateDataAccessConfiguration": {
|
601
919
|
"type": "structure",
|
@@ -610,6 +928,9 @@
|
|
610
928
|
}
|
611
929
|
}
|
612
930
|
},
|
931
|
+
"providerJobConfiguration": {
|
932
|
+
"shape": "Sk"
|
933
|
+
},
|
613
934
|
"providerName": {},
|
614
935
|
"providerServiceArn": {},
|
615
936
|
"providerServiceDisplayName": {},
|
@@ -655,12 +976,12 @@
|
|
655
976
|
"type": "boolean"
|
656
977
|
},
|
657
978
|
"mappedInputFields": {
|
658
|
-
"shape": "
|
979
|
+
"shape": "S1y"
|
659
980
|
},
|
660
981
|
"schemaArn": {},
|
661
982
|
"schemaName": {},
|
662
983
|
"tags": {
|
663
|
-
"shape": "
|
984
|
+
"shape": "Sv"
|
664
985
|
},
|
665
986
|
"updatedAt": {
|
666
987
|
"type": "timestamp"
|
@@ -699,7 +1020,7 @@
|
|
699
1020
|
"type": "structure",
|
700
1021
|
"members": {
|
701
1022
|
"jobs": {
|
702
|
-
"shape": "
|
1023
|
+
"shape": "S3t"
|
703
1024
|
},
|
704
1025
|
"nextToken": {}
|
705
1026
|
}
|
@@ -754,6 +1075,58 @@
|
|
754
1075
|
}
|
755
1076
|
}
|
756
1077
|
},
|
1078
|
+
"ListIdNamespaces": {
|
1079
|
+
"http": {
|
1080
|
+
"method": "GET",
|
1081
|
+
"requestUri": "/idnamespaces",
|
1082
|
+
"responseCode": 200
|
1083
|
+
},
|
1084
|
+
"input": {
|
1085
|
+
"type": "structure",
|
1086
|
+
"members": {
|
1087
|
+
"maxResults": {
|
1088
|
+
"location": "querystring",
|
1089
|
+
"locationName": "maxResults",
|
1090
|
+
"type": "integer"
|
1091
|
+
},
|
1092
|
+
"nextToken": {
|
1093
|
+
"location": "querystring",
|
1094
|
+
"locationName": "nextToken"
|
1095
|
+
}
|
1096
|
+
}
|
1097
|
+
},
|
1098
|
+
"output": {
|
1099
|
+
"type": "structure",
|
1100
|
+
"members": {
|
1101
|
+
"idNamespaceSummaries": {
|
1102
|
+
"type": "list",
|
1103
|
+
"member": {
|
1104
|
+
"type": "structure",
|
1105
|
+
"required": [
|
1106
|
+
"createdAt",
|
1107
|
+
"idNamespaceArn",
|
1108
|
+
"idNamespaceName",
|
1109
|
+
"type",
|
1110
|
+
"updatedAt"
|
1111
|
+
],
|
1112
|
+
"members": {
|
1113
|
+
"createdAt": {
|
1114
|
+
"type": "timestamp"
|
1115
|
+
},
|
1116
|
+
"description": {},
|
1117
|
+
"idNamespaceArn": {},
|
1118
|
+
"idNamespaceName": {},
|
1119
|
+
"type": {},
|
1120
|
+
"updatedAt": {
|
1121
|
+
"type": "timestamp"
|
1122
|
+
}
|
1123
|
+
}
|
1124
|
+
}
|
1125
|
+
},
|
1126
|
+
"nextToken": {}
|
1127
|
+
}
|
1128
|
+
}
|
1129
|
+
},
|
757
1130
|
"ListMatchingJobs": {
|
758
1131
|
"http": {
|
759
1132
|
"method": "GET",
|
@@ -785,7 +1158,7 @@
|
|
785
1158
|
"type": "structure",
|
786
1159
|
"members": {
|
787
1160
|
"jobs": {
|
788
|
-
"shape": "
|
1161
|
+
"shape": "S3t"
|
789
1162
|
},
|
790
1163
|
"nextToken": {}
|
791
1164
|
}
|
@@ -971,11 +1344,46 @@
|
|
971
1344
|
],
|
972
1345
|
"members": {
|
973
1346
|
"tags": {
|
974
|
-
"shape": "
|
1347
|
+
"shape": "Sv"
|
975
1348
|
}
|
976
1349
|
}
|
977
1350
|
}
|
978
1351
|
},
|
1352
|
+
"PutPolicy": {
|
1353
|
+
"http": {
|
1354
|
+
"method": "PUT",
|
1355
|
+
"requestUri": "/policies/{arn}",
|
1356
|
+
"responseCode": 200
|
1357
|
+
},
|
1358
|
+
"input": {
|
1359
|
+
"type": "structure",
|
1360
|
+
"required": [
|
1361
|
+
"arn",
|
1362
|
+
"policy"
|
1363
|
+
],
|
1364
|
+
"members": {
|
1365
|
+
"arn": {
|
1366
|
+
"location": "uri",
|
1367
|
+
"locationName": "arn"
|
1368
|
+
},
|
1369
|
+
"policy": {},
|
1370
|
+
"token": {}
|
1371
|
+
}
|
1372
|
+
},
|
1373
|
+
"output": {
|
1374
|
+
"type": "structure",
|
1375
|
+
"required": [
|
1376
|
+
"arn",
|
1377
|
+
"token"
|
1378
|
+
],
|
1379
|
+
"members": {
|
1380
|
+
"arn": {},
|
1381
|
+
"policy": {},
|
1382
|
+
"token": {}
|
1383
|
+
}
|
1384
|
+
},
|
1385
|
+
"idempotent": true
|
1386
|
+
},
|
979
1387
|
"StartIdMappingJob": {
|
980
1388
|
"http": {
|
981
1389
|
"requestUri": "/idmappingworkflows/{workflowName}/jobs",
|
@@ -987,6 +1395,9 @@
|
|
987
1395
|
"workflowName"
|
988
1396
|
],
|
989
1397
|
"members": {
|
1398
|
+
"outputSourceConfig": {
|
1399
|
+
"shape": "S2l"
|
1400
|
+
},
|
990
1401
|
"workflowName": {
|
991
1402
|
"location": "uri",
|
992
1403
|
"locationName": "workflowName"
|
@@ -999,7 +1410,10 @@
|
|
999
1410
|
"jobId"
|
1000
1411
|
],
|
1001
1412
|
"members": {
|
1002
|
-
"jobId": {}
|
1413
|
+
"jobId": {},
|
1414
|
+
"outputSourceConfig": {
|
1415
|
+
"shape": "S2l"
|
1416
|
+
}
|
1003
1417
|
}
|
1004
1418
|
}
|
1005
1419
|
},
|
@@ -1047,7 +1461,7 @@
|
|
1047
1461
|
"locationName": "resourceArn"
|
1048
1462
|
},
|
1049
1463
|
"tags": {
|
1050
|
-
"shape": "
|
1464
|
+
"shape": "Sv"
|
1051
1465
|
}
|
1052
1466
|
}
|
1053
1467
|
},
|
@@ -1098,20 +1512,19 @@
|
|
1098
1512
|
"required": [
|
1099
1513
|
"idMappingTechniques",
|
1100
1514
|
"inputSourceConfig",
|
1101
|
-
"outputSourceConfig",
|
1102
1515
|
"roleArn",
|
1103
1516
|
"workflowName"
|
1104
1517
|
],
|
1105
1518
|
"members": {
|
1106
1519
|
"description": {},
|
1107
1520
|
"idMappingTechniques": {
|
1108
|
-
"shape": "
|
1521
|
+
"shape": "Sf"
|
1109
1522
|
},
|
1110
1523
|
"inputSourceConfig": {
|
1111
|
-
"shape": "
|
1524
|
+
"shape": "Sm"
|
1112
1525
|
},
|
1113
1526
|
"outputSourceConfig": {
|
1114
|
-
"shape": "
|
1527
|
+
"shape": "Sr"
|
1115
1528
|
},
|
1116
1529
|
"roleArn": {},
|
1117
1530
|
"workflowName": {
|
@@ -1125,7 +1538,6 @@
|
|
1125
1538
|
"required": [
|
1126
1539
|
"idMappingTechniques",
|
1127
1540
|
"inputSourceConfig",
|
1128
|
-
"outputSourceConfig",
|
1129
1541
|
"roleArn",
|
1130
1542
|
"workflowArn",
|
1131
1543
|
"workflowName"
|
@@ -1133,13 +1545,13 @@
|
|
1133
1545
|
"members": {
|
1134
1546
|
"description": {},
|
1135
1547
|
"idMappingTechniques": {
|
1136
|
-
"shape": "
|
1548
|
+
"shape": "Sf"
|
1137
1549
|
},
|
1138
1550
|
"inputSourceConfig": {
|
1139
|
-
"shape": "
|
1551
|
+
"shape": "Sm"
|
1140
1552
|
},
|
1141
1553
|
"outputSourceConfig": {
|
1142
|
-
"shape": "
|
1554
|
+
"shape": "Sr"
|
1143
1555
|
},
|
1144
1556
|
"roleArn": {},
|
1145
1557
|
"workflowArn": {},
|
@@ -1148,6 +1560,63 @@
|
|
1148
1560
|
},
|
1149
1561
|
"idempotent": true
|
1150
1562
|
},
|
1563
|
+
"UpdateIdNamespace": {
|
1564
|
+
"http": {
|
1565
|
+
"method": "PUT",
|
1566
|
+
"requestUri": "/idnamespaces/{idNamespaceName}",
|
1567
|
+
"responseCode": 200
|
1568
|
+
},
|
1569
|
+
"input": {
|
1570
|
+
"type": "structure",
|
1571
|
+
"required": [
|
1572
|
+
"idNamespaceName"
|
1573
|
+
],
|
1574
|
+
"members": {
|
1575
|
+
"description": {},
|
1576
|
+
"idMappingWorkflowProperties": {
|
1577
|
+
"shape": "S11"
|
1578
|
+
},
|
1579
|
+
"idNamespaceName": {
|
1580
|
+
"location": "uri",
|
1581
|
+
"locationName": "idNamespaceName"
|
1582
|
+
},
|
1583
|
+
"inputSourceConfig": {
|
1584
|
+
"shape": "S14"
|
1585
|
+
},
|
1586
|
+
"roleArn": {}
|
1587
|
+
}
|
1588
|
+
},
|
1589
|
+
"output": {
|
1590
|
+
"type": "structure",
|
1591
|
+
"required": [
|
1592
|
+
"createdAt",
|
1593
|
+
"idNamespaceArn",
|
1594
|
+
"idNamespaceName",
|
1595
|
+
"type",
|
1596
|
+
"updatedAt"
|
1597
|
+
],
|
1598
|
+
"members": {
|
1599
|
+
"createdAt": {
|
1600
|
+
"type": "timestamp"
|
1601
|
+
},
|
1602
|
+
"description": {},
|
1603
|
+
"idMappingWorkflowProperties": {
|
1604
|
+
"shape": "S11"
|
1605
|
+
},
|
1606
|
+
"idNamespaceArn": {},
|
1607
|
+
"idNamespaceName": {},
|
1608
|
+
"inputSourceConfig": {
|
1609
|
+
"shape": "S14"
|
1610
|
+
},
|
1611
|
+
"roleArn": {},
|
1612
|
+
"type": {},
|
1613
|
+
"updatedAt": {
|
1614
|
+
"type": "timestamp"
|
1615
|
+
}
|
1616
|
+
}
|
1617
|
+
},
|
1618
|
+
"idempotent": true
|
1619
|
+
},
|
1151
1620
|
"UpdateMatchingWorkflow": {
|
1152
1621
|
"http": {
|
1153
1622
|
"method": "PUT",
|
@@ -1166,16 +1635,16 @@
|
|
1166
1635
|
"members": {
|
1167
1636
|
"description": {},
|
1168
1637
|
"incrementalRunConfig": {
|
1169
|
-
"shape": "
|
1638
|
+
"shape": "S1b"
|
1170
1639
|
},
|
1171
1640
|
"inputSourceConfig": {
|
1172
|
-
"shape": "
|
1641
|
+
"shape": "S1d"
|
1173
1642
|
},
|
1174
1643
|
"outputSourceConfig": {
|
1175
|
-
"shape": "
|
1644
|
+
"shape": "S1h"
|
1176
1645
|
},
|
1177
1646
|
"resolutionTechniques": {
|
1178
|
-
"shape": "
|
1647
|
+
"shape": "S1m"
|
1179
1648
|
},
|
1180
1649
|
"roleArn": {},
|
1181
1650
|
"workflowName": {
|
@@ -1196,16 +1665,16 @@
|
|
1196
1665
|
"members": {
|
1197
1666
|
"description": {},
|
1198
1667
|
"incrementalRunConfig": {
|
1199
|
-
"shape": "
|
1668
|
+
"shape": "S1b"
|
1200
1669
|
},
|
1201
1670
|
"inputSourceConfig": {
|
1202
|
-
"shape": "
|
1671
|
+
"shape": "S1d"
|
1203
1672
|
},
|
1204
1673
|
"outputSourceConfig": {
|
1205
|
-
"shape": "
|
1674
|
+
"shape": "S1h"
|
1206
1675
|
},
|
1207
1676
|
"resolutionTechniques": {
|
1208
|
-
"shape": "
|
1677
|
+
"shape": "S1m"
|
1209
1678
|
},
|
1210
1679
|
"roleArn": {},
|
1211
1680
|
"workflowName": {}
|
@@ -1228,7 +1697,7 @@
|
|
1228
1697
|
"members": {
|
1229
1698
|
"description": {},
|
1230
1699
|
"mappedInputFields": {
|
1231
|
-
"shape": "
|
1700
|
+
"shape": "S1y"
|
1232
1701
|
},
|
1233
1702
|
"schemaName": {
|
1234
1703
|
"location": "uri",
|
@@ -1246,7 +1715,7 @@
|
|
1246
1715
|
"members": {
|
1247
1716
|
"description": {},
|
1248
1717
|
"mappedInputFields": {
|
1249
|
-
"shape": "
|
1718
|
+
"shape": "S1y"
|
1250
1719
|
},
|
1251
1720
|
"schemaArn": {},
|
1252
1721
|
"schemaName": {}
|
@@ -1256,20 +1725,19 @@
|
|
1256
1725
|
}
|
1257
1726
|
},
|
1258
1727
|
"shapes": {
|
1259
|
-
"
|
1728
|
+
"Sf": {
|
1260
1729
|
"type": "structure",
|
1261
1730
|
"required": [
|
1262
|
-
"idMappingType"
|
1263
|
-
"providerProperties"
|
1731
|
+
"idMappingType"
|
1264
1732
|
],
|
1265
1733
|
"members": {
|
1266
1734
|
"idMappingType": {},
|
1267
1735
|
"providerProperties": {
|
1268
|
-
"shape": "
|
1736
|
+
"shape": "Sh"
|
1269
1737
|
}
|
1270
1738
|
}
|
1271
1739
|
},
|
1272
|
-
"
|
1740
|
+
"Sh": {
|
1273
1741
|
"type": "structure",
|
1274
1742
|
"required": [
|
1275
1743
|
"providerServiceArn"
|
@@ -1285,31 +1753,31 @@
|
|
1285
1753
|
}
|
1286
1754
|
},
|
1287
1755
|
"providerConfiguration": {
|
1288
|
-
"shape": "
|
1756
|
+
"shape": "Sk"
|
1289
1757
|
},
|
1290
1758
|
"providerServiceArn": {}
|
1291
1759
|
}
|
1292
1760
|
},
|
1293
|
-
"
|
1761
|
+
"Sk": {
|
1294
1762
|
"type": "structure",
|
1295
1763
|
"members": {},
|
1296
1764
|
"document": true
|
1297
1765
|
},
|
1298
|
-
"
|
1766
|
+
"Sm": {
|
1299
1767
|
"type": "list",
|
1300
1768
|
"member": {
|
1301
1769
|
"type": "structure",
|
1302
1770
|
"required": [
|
1303
|
-
"inputSourceARN"
|
1304
|
-
"schemaName"
|
1771
|
+
"inputSourceARN"
|
1305
1772
|
],
|
1306
1773
|
"members": {
|
1307
1774
|
"inputSourceARN": {},
|
1308
|
-
"schemaName": {}
|
1775
|
+
"schemaName": {},
|
1776
|
+
"type": {}
|
1309
1777
|
}
|
1310
1778
|
}
|
1311
1779
|
},
|
1312
|
-
"
|
1780
|
+
"Sr": {
|
1313
1781
|
"type": "list",
|
1314
1782
|
"member": {
|
1315
1783
|
"type": "structure",
|
@@ -1322,18 +1790,55 @@
|
|
1322
1790
|
}
|
1323
1791
|
}
|
1324
1792
|
},
|
1325
|
-
"
|
1793
|
+
"Sv": {
|
1326
1794
|
"type": "map",
|
1327
1795
|
"key": {},
|
1328
1796
|
"value": {}
|
1329
1797
|
},
|
1330
|
-
"
|
1798
|
+
"S11": {
|
1799
|
+
"type": "list",
|
1800
|
+
"member": {
|
1801
|
+
"type": "structure",
|
1802
|
+
"required": [
|
1803
|
+
"idMappingType"
|
1804
|
+
],
|
1805
|
+
"members": {
|
1806
|
+
"idMappingType": {},
|
1807
|
+
"providerProperties": {
|
1808
|
+
"type": "structure",
|
1809
|
+
"required": [
|
1810
|
+
"providerServiceArn"
|
1811
|
+
],
|
1812
|
+
"members": {
|
1813
|
+
"providerConfiguration": {
|
1814
|
+
"shape": "Sk"
|
1815
|
+
},
|
1816
|
+
"providerServiceArn": {}
|
1817
|
+
}
|
1818
|
+
}
|
1819
|
+
}
|
1820
|
+
}
|
1821
|
+
},
|
1822
|
+
"S14": {
|
1823
|
+
"type": "list",
|
1824
|
+
"member": {
|
1825
|
+
"type": "structure",
|
1826
|
+
"required": [
|
1827
|
+
"inputSourceARN"
|
1828
|
+
],
|
1829
|
+
"members": {
|
1830
|
+
"inputSourceARN": {},
|
1831
|
+
"schemaName": {}
|
1832
|
+
}
|
1833
|
+
}
|
1834
|
+
},
|
1835
|
+
"S1b": {
|
1331
1836
|
"type": "structure",
|
1332
1837
|
"members": {
|
1333
1838
|
"incrementalRunType": {}
|
1334
1839
|
}
|
1335
1840
|
},
|
1336
|
-
"
|
1841
|
+
"S1d": {
|
1337
1842
|
"type": "list",
|
1338
1843
|
"member": {
|
1339
1844
|
"type": "structure",
|
@@ -1350,7 +1855,7 @@
|
|
1350
1855
|
}
|
1351
1856
|
}
|
1352
1857
|
},
|
1353
|
-
"
|
1858
|
+
"S1h": {
|
1354
1859
|
"type": "list",
|
1355
1860
|
"member": {
|
1356
1861
|
"type": "structure",
|
@@ -1382,14 +1887,14 @@
|
|
1382
1887
|
}
|
1383
1888
|
}
|
1384
1889
|
},
|
1385
|
-
"
|
1890
|
+
"S1m": {
|
1386
1891
|
"type": "structure",
|
1387
1892
|
"required": [
|
1388
1893
|
"resolutionType"
|
1389
1894
|
],
|
1390
1895
|
"members": {
|
1391
1896
|
"providerProperties": {
|
1392
|
-
"shape": "
|
1897
|
+
"shape": "Sh"
|
1393
1898
|
},
|
1394
1899
|
"resolutionType": {},
|
1395
1900
|
"ruleBasedProperties": {
|
@@ -1421,7 +1926,7 @@
|
|
1421
1926
|
}
|
1422
1927
|
}
|
1423
1928
|
},
|
1424
|
-
"
|
1929
|
+
"S1y": {
|
1425
1930
|
"type": "list",
|
1426
1931
|
"member": {
|
1427
1932
|
"type": "structure",
|
@@ -1438,13 +1943,28 @@
|
|
1438
1943
|
}
|
1439
1944
|
}
|
1440
1945
|
},
|
1441
|
-
"
|
1946
|
+
"S2h": {
|
1442
1947
|
"type": "structure",
|
1443
1948
|
"members": {
|
1444
1949
|
"errorMessage": {}
|
1445
1950
|
}
|
1446
1951
|
},
|
1447
|
-
"
|
1952
|
+
"S2l": {
|
1953
|
+
"type": "list",
|
1954
|
+
"member": {
|
1955
|
+
"type": "structure",
|
1956
|
+
"required": [
|
1957
|
+
"outputS3Path",
|
1958
|
+
"roleArn"
|
1959
|
+
],
|
1960
|
+
"members": {
|
1961
|
+
"KMSArn": {},
|
1962
|
+
"outputS3Path": {},
|
1963
|
+
"roleArn": {}
|
1964
|
+
}
|
1965
|
+
}
|
1966
|
+
},
|
1967
|
+
"S3t": {
|
1448
1968
|
"type": "list",
|
1449
1969
|
"member": {
|
1450
1970
|
"type": "structure",
|