cdk-lambda-subminute 2.0.325 → 2.0.326

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.
Files changed (39) hide show
  1. package/.jsii +16 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/b2bi-2022-06-23.examples.json +0 -709
  5. package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +84 -20
  6. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +269 -201
  7. package/node_modules/aws-sdk/apis/firehose-2015-08-04.min.json +85 -65
  8. package/node_modules/aws-sdk/apis/gamelift-2015-10-01.min.json +4 -1
  9. package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +479 -317
  10. package/node_modules/aws-sdk/apis/metadata.json +4 -0
  11. package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.examples.json +5 -0
  12. package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.min.json +1286 -0
  13. package/node_modules/aws-sdk/apis/neptune-graph-2023-11-29.paginators.json +28 -0
  14. package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +548 -466
  15. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  16. package/node_modules/aws-sdk/clients/all.js +2 -1
  17. package/node_modules/aws-sdk/clients/appstream.d.ts +1 -1
  18. package/node_modules/aws-sdk/clients/b2bi.d.ts +45 -45
  19. package/node_modules/aws-sdk/clients/billingconductor.d.ts +98 -3
  20. package/node_modules/aws-sdk/clients/connect.d.ts +94 -38
  21. package/node_modules/aws-sdk/clients/controltower.d.ts +3 -3
  22. package/node_modules/aws-sdk/clients/firehose.d.ts +24 -0
  23. package/node_modules/aws-sdk/clients/gamelift.d.ts +14 -10
  24. package/node_modules/aws-sdk/clients/iot.d.ts +173 -1
  25. package/node_modules/aws-sdk/clients/neptunegraph.d.ts +1394 -0
  26. package/node_modules/aws-sdk/clients/neptunegraph.js +19 -0
  27. package/node_modules/aws-sdk/clients/opensearch.d.ts +23 -23
  28. package/node_modules/aws-sdk/clients/quicksight.d.ts +75 -3
  29. package/node_modules/aws-sdk/clients/workspaces.d.ts +3 -3
  30. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  31. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +68 -10
  32. package/node_modules/aws-sdk/dist/aws-sdk.js +844 -587
  33. package/node_modules/aws-sdk/dist/aws-sdk.min.js +82 -82
  34. package/node_modules/aws-sdk/dist-tools/service-collector.js +1 -1
  35. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  36. package/node_modules/aws-sdk/lib/core.js +1 -1
  37. package/node_modules/aws-sdk/lib/services/neptunegraph.js +14 -0
  38. package/node_modules/aws-sdk/package.json +1 -1
  39. package/package.json +3 -3
@@ -0,0 +1,1286 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2023-11-29",
5
+ "endpointPrefix": "neptune-graph",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "ripServiceName": "neptune-graph",
9
+ "serviceAbbreviation": "Neptune Graph",
10
+ "serviceFullName": "Amazon Neptune Graph",
11
+ "serviceId": "Neptune Graph",
12
+ "signatureVersion": "v4",
13
+ "signingName": "neptune-graph",
14
+ "uid": "neptune-graph-2023-11-29"
15
+ },
16
+ "operations": {
17
+ "CancelImportTask": {
18
+ "http": {
19
+ "method": "DELETE",
20
+ "requestUri": "/importtasks/{taskIdentifier}",
21
+ "responseCode": 200
22
+ },
23
+ "input": {
24
+ "type": "structure",
25
+ "required": [
26
+ "taskIdentifier"
27
+ ],
28
+ "members": {
29
+ "taskIdentifier": {
30
+ "location": "uri",
31
+ "locationName": "taskIdentifier"
32
+ }
33
+ }
34
+ },
35
+ "output": {
36
+ "type": "structure",
37
+ "required": [
38
+ "taskId",
39
+ "source",
40
+ "roleArn",
41
+ "status"
42
+ ],
43
+ "members": {
44
+ "graphId": {},
45
+ "taskId": {},
46
+ "source": {},
47
+ "format": {},
48
+ "roleArn": {},
49
+ "status": {}
50
+ }
51
+ },
52
+ "staticContextParams": {
53
+ "ApiType": {
54
+ "value": "ControlPlane"
55
+ }
56
+ }
57
+ },
58
+ "CreateGraph": {
59
+ "http": {
60
+ "requestUri": "/graphs",
61
+ "responseCode": 201
62
+ },
63
+ "input": {
64
+ "type": "structure",
65
+ "required": [
66
+ "graphName",
67
+ "provisionedMemory"
68
+ ],
69
+ "members": {
70
+ "graphName": {},
71
+ "tags": {
72
+ "shape": "Sb"
73
+ },
74
+ "publicConnectivity": {
75
+ "type": "boolean"
76
+ },
77
+ "kmsKeyIdentifier": {},
78
+ "vectorSearchConfiguration": {
79
+ "shape": "Sg"
80
+ },
81
+ "replicaCount": {
82
+ "type": "integer"
83
+ },
84
+ "deletionProtection": {
85
+ "type": "boolean"
86
+ },
87
+ "provisionedMemory": {
88
+ "type": "integer"
89
+ }
90
+ }
91
+ },
92
+ "output": {
93
+ "type": "structure",
94
+ "required": [
95
+ "id",
96
+ "name",
97
+ "arn"
98
+ ],
99
+ "members": {
100
+ "id": {},
101
+ "name": {},
102
+ "arn": {},
103
+ "status": {},
104
+ "statusReason": {},
105
+ "createTime": {
106
+ "type": "timestamp"
107
+ },
108
+ "provisionedMemory": {
109
+ "type": "integer"
110
+ },
111
+ "endpoint": {},
112
+ "publicConnectivity": {
113
+ "type": "boolean"
114
+ },
115
+ "vectorSearchConfiguration": {
116
+ "shape": "Sg"
117
+ },
118
+ "replicaCount": {
119
+ "type": "integer"
120
+ },
121
+ "kmsKeyIdentifier": {},
122
+ "sourceSnapshotId": {},
123
+ "deletionProtection": {
124
+ "type": "boolean"
125
+ },
126
+ "buildNumber": {}
127
+ }
128
+ },
129
+ "staticContextParams": {
130
+ "ApiType": {
131
+ "value": "ControlPlane"
132
+ }
133
+ }
134
+ },
135
+ "CreateGraphSnapshot": {
136
+ "http": {
137
+ "requestUri": "/snapshots",
138
+ "responseCode": 201
139
+ },
140
+ "input": {
141
+ "type": "structure",
142
+ "required": [
143
+ "graphIdentifier",
144
+ "snapshotName"
145
+ ],
146
+ "members": {
147
+ "graphIdentifier": {},
148
+ "snapshotName": {},
149
+ "tags": {
150
+ "shape": "Sb"
151
+ }
152
+ }
153
+ },
154
+ "output": {
155
+ "type": "structure",
156
+ "required": [
157
+ "id",
158
+ "name",
159
+ "arn"
160
+ ],
161
+ "members": {
162
+ "id": {},
163
+ "name": {},
164
+ "arn": {},
165
+ "sourceGraphId": {},
166
+ "snapshotCreateTime": {
167
+ "type": "timestamp"
168
+ },
169
+ "status": {},
170
+ "kmsKeyIdentifier": {}
171
+ }
172
+ },
173
+ "staticContextParams": {
174
+ "ApiType": {
175
+ "value": "ControlPlane"
176
+ }
177
+ }
178
+ },
179
+ "CreateGraphUsingImportTask": {
180
+ "http": {
181
+ "requestUri": "/importtasks",
182
+ "responseCode": 201
183
+ },
184
+ "input": {
185
+ "type": "structure",
186
+ "required": [
187
+ "graphName",
188
+ "source",
189
+ "roleArn"
190
+ ],
191
+ "members": {
192
+ "graphName": {},
193
+ "tags": {
194
+ "shape": "Sb"
195
+ },
196
+ "publicConnectivity": {
197
+ "type": "boolean"
198
+ },
199
+ "kmsKeyIdentifier": {},
200
+ "vectorSearchConfiguration": {
201
+ "shape": "Sg"
202
+ },
203
+ "replicaCount": {
204
+ "type": "integer"
205
+ },
206
+ "deletionProtection": {
207
+ "type": "boolean"
208
+ },
209
+ "importOptions": {
210
+ "shape": "Su"
211
+ },
212
+ "maxProvisionedMemory": {
213
+ "type": "integer"
214
+ },
215
+ "minProvisionedMemory": {
216
+ "type": "integer"
217
+ },
218
+ "failOnError": {
219
+ "type": "boolean"
220
+ },
221
+ "source": {},
222
+ "format": {},
223
+ "roleArn": {}
224
+ }
225
+ },
226
+ "output": {
227
+ "type": "structure",
228
+ "required": [
229
+ "taskId",
230
+ "source",
231
+ "roleArn",
232
+ "status"
233
+ ],
234
+ "members": {
235
+ "graphId": {},
236
+ "taskId": {},
237
+ "source": {},
238
+ "format": {},
239
+ "roleArn": {},
240
+ "status": {},
241
+ "importOptions": {
242
+ "shape": "Su"
243
+ }
244
+ }
245
+ },
246
+ "staticContextParams": {
247
+ "ApiType": {
248
+ "value": "ControlPlane"
249
+ }
250
+ }
251
+ },
252
+ "CreatePrivateGraphEndpoint": {
253
+ "http": {
254
+ "requestUri": "/graphs/{graphIdentifier}/endpoints/",
255
+ "responseCode": 201
256
+ },
257
+ "input": {
258
+ "type": "structure",
259
+ "required": [
260
+ "graphIdentifier"
261
+ ],
262
+ "members": {
263
+ "graphIdentifier": {
264
+ "location": "uri",
265
+ "locationName": "graphIdentifier"
266
+ },
267
+ "vpcId": {},
268
+ "subnetIds": {
269
+ "shape": "S11"
270
+ },
271
+ "vpcSecurityGroupIds": {
272
+ "type": "list",
273
+ "member": {}
274
+ }
275
+ }
276
+ },
277
+ "output": {
278
+ "type": "structure",
279
+ "required": [
280
+ "vpcId",
281
+ "subnetIds",
282
+ "status"
283
+ ],
284
+ "members": {
285
+ "vpcId": {},
286
+ "subnetIds": {
287
+ "shape": "S11"
288
+ },
289
+ "status": {},
290
+ "vpcEndpointId": {}
291
+ }
292
+ },
293
+ "staticContextParams": {
294
+ "ApiType": {
295
+ "value": "ControlPlane"
296
+ }
297
+ }
298
+ },
299
+ "DeleteGraph": {
300
+ "http": {
301
+ "method": "DELETE",
302
+ "requestUri": "/graphs/{graphIdentifier}",
303
+ "responseCode": 200
304
+ },
305
+ "input": {
306
+ "type": "structure",
307
+ "required": [
308
+ "graphIdentifier",
309
+ "skipSnapshot"
310
+ ],
311
+ "members": {
312
+ "graphIdentifier": {
313
+ "location": "uri",
314
+ "locationName": "graphIdentifier"
315
+ },
316
+ "skipSnapshot": {
317
+ "location": "querystring",
318
+ "locationName": "skipSnapshot",
319
+ "type": "boolean"
320
+ }
321
+ }
322
+ },
323
+ "output": {
324
+ "type": "structure",
325
+ "required": [
326
+ "id",
327
+ "name",
328
+ "arn"
329
+ ],
330
+ "members": {
331
+ "id": {},
332
+ "name": {},
333
+ "arn": {},
334
+ "status": {},
335
+ "statusReason": {},
336
+ "createTime": {
337
+ "type": "timestamp"
338
+ },
339
+ "provisionedMemory": {
340
+ "type": "integer"
341
+ },
342
+ "endpoint": {},
343
+ "publicConnectivity": {
344
+ "type": "boolean"
345
+ },
346
+ "vectorSearchConfiguration": {
347
+ "shape": "Sg"
348
+ },
349
+ "replicaCount": {
350
+ "type": "integer"
351
+ },
352
+ "kmsKeyIdentifier": {},
353
+ "sourceSnapshotId": {},
354
+ "deletionProtection": {
355
+ "type": "boolean"
356
+ },
357
+ "buildNumber": {}
358
+ }
359
+ },
360
+ "staticContextParams": {
361
+ "ApiType": {
362
+ "value": "ControlPlane"
363
+ }
364
+ }
365
+ },
366
+ "DeleteGraphSnapshot": {
367
+ "http": {
368
+ "method": "DELETE",
369
+ "requestUri": "/snapshots/{snapshotIdentifier}",
370
+ "responseCode": 200
371
+ },
372
+ "input": {
373
+ "type": "structure",
374
+ "required": [
375
+ "snapshotIdentifier"
376
+ ],
377
+ "members": {
378
+ "snapshotIdentifier": {
379
+ "location": "uri",
380
+ "locationName": "snapshotIdentifier"
381
+ }
382
+ }
383
+ },
384
+ "output": {
385
+ "type": "structure",
386
+ "required": [
387
+ "id",
388
+ "name",
389
+ "arn"
390
+ ],
391
+ "members": {
392
+ "id": {},
393
+ "name": {},
394
+ "arn": {},
395
+ "sourceGraphId": {},
396
+ "snapshotCreateTime": {
397
+ "type": "timestamp"
398
+ },
399
+ "status": {},
400
+ "kmsKeyIdentifier": {}
401
+ }
402
+ },
403
+ "staticContextParams": {
404
+ "ApiType": {
405
+ "value": "ControlPlane"
406
+ }
407
+ }
408
+ },
409
+ "DeletePrivateGraphEndpoint": {
410
+ "http": {
411
+ "method": "DELETE",
412
+ "requestUri": "/graphs/{graphIdentifier}/endpoints/{vpcId}",
413
+ "responseCode": 200
414
+ },
415
+ "input": {
416
+ "type": "structure",
417
+ "required": [
418
+ "graphIdentifier",
419
+ "vpcId"
420
+ ],
421
+ "members": {
422
+ "graphIdentifier": {
423
+ "location": "uri",
424
+ "locationName": "graphIdentifier"
425
+ },
426
+ "vpcId": {
427
+ "location": "uri",
428
+ "locationName": "vpcId"
429
+ }
430
+ }
431
+ },
432
+ "output": {
433
+ "type": "structure",
434
+ "required": [
435
+ "vpcId",
436
+ "subnetIds",
437
+ "status"
438
+ ],
439
+ "members": {
440
+ "vpcId": {},
441
+ "subnetIds": {
442
+ "shape": "S11"
443
+ },
444
+ "status": {},
445
+ "vpcEndpointId": {}
446
+ }
447
+ },
448
+ "staticContextParams": {
449
+ "ApiType": {
450
+ "value": "ControlPlane"
451
+ }
452
+ }
453
+ },
454
+ "GetGraph": {
455
+ "http": {
456
+ "method": "GET",
457
+ "requestUri": "/graphs/{graphIdentifier}",
458
+ "responseCode": 200
459
+ },
460
+ "input": {
461
+ "type": "structure",
462
+ "required": [
463
+ "graphIdentifier"
464
+ ],
465
+ "members": {
466
+ "graphIdentifier": {
467
+ "location": "uri",
468
+ "locationName": "graphIdentifier"
469
+ }
470
+ }
471
+ },
472
+ "output": {
473
+ "type": "structure",
474
+ "required": [
475
+ "id",
476
+ "name",
477
+ "arn"
478
+ ],
479
+ "members": {
480
+ "id": {},
481
+ "name": {},
482
+ "arn": {},
483
+ "status": {},
484
+ "statusReason": {},
485
+ "createTime": {
486
+ "type": "timestamp"
487
+ },
488
+ "provisionedMemory": {
489
+ "type": "integer"
490
+ },
491
+ "endpoint": {},
492
+ "publicConnectivity": {
493
+ "type": "boolean"
494
+ },
495
+ "vectorSearchConfiguration": {
496
+ "shape": "Sg"
497
+ },
498
+ "replicaCount": {
499
+ "type": "integer"
500
+ },
501
+ "kmsKeyIdentifier": {},
502
+ "sourceSnapshotId": {},
503
+ "deletionProtection": {
504
+ "type": "boolean"
505
+ },
506
+ "buildNumber": {}
507
+ }
508
+ },
509
+ "staticContextParams": {
510
+ "ApiType": {
511
+ "value": "ControlPlane"
512
+ }
513
+ }
514
+ },
515
+ "GetGraphSnapshot": {
516
+ "http": {
517
+ "method": "GET",
518
+ "requestUri": "/snapshots/{snapshotIdentifier}",
519
+ "responseCode": 200
520
+ },
521
+ "input": {
522
+ "type": "structure",
523
+ "required": [
524
+ "snapshotIdentifier"
525
+ ],
526
+ "members": {
527
+ "snapshotIdentifier": {
528
+ "location": "uri",
529
+ "locationName": "snapshotIdentifier"
530
+ }
531
+ }
532
+ },
533
+ "output": {
534
+ "type": "structure",
535
+ "required": [
536
+ "id",
537
+ "name",
538
+ "arn"
539
+ ],
540
+ "members": {
541
+ "id": {},
542
+ "name": {},
543
+ "arn": {},
544
+ "sourceGraphId": {},
545
+ "snapshotCreateTime": {
546
+ "type": "timestamp"
547
+ },
548
+ "status": {},
549
+ "kmsKeyIdentifier": {}
550
+ }
551
+ },
552
+ "staticContextParams": {
553
+ "ApiType": {
554
+ "value": "ControlPlane"
555
+ }
556
+ }
557
+ },
558
+ "GetImportTask": {
559
+ "http": {
560
+ "method": "GET",
561
+ "requestUri": "/importtasks/{taskIdentifier}",
562
+ "responseCode": 200
563
+ },
564
+ "input": {
565
+ "type": "structure",
566
+ "required": [
567
+ "taskIdentifier"
568
+ ],
569
+ "members": {
570
+ "taskIdentifier": {
571
+ "location": "uri",
572
+ "locationName": "taskIdentifier"
573
+ }
574
+ }
575
+ },
576
+ "output": {
577
+ "type": "structure",
578
+ "required": [
579
+ "taskId",
580
+ "source",
581
+ "roleArn",
582
+ "status"
583
+ ],
584
+ "members": {
585
+ "graphId": {},
586
+ "taskId": {},
587
+ "source": {},
588
+ "format": {},
589
+ "roleArn": {},
590
+ "status": {},
591
+ "importOptions": {
592
+ "shape": "Su"
593
+ },
594
+ "importTaskDetails": {
595
+ "type": "structure",
596
+ "required": [
597
+ "status",
598
+ "startTime",
599
+ "timeElapsedSeconds",
600
+ "progressPercentage",
601
+ "errorCount",
602
+ "statementCount",
603
+ "dictionaryEntryCount"
604
+ ],
605
+ "members": {
606
+ "status": {},
607
+ "startTime": {
608
+ "type": "timestamp"
609
+ },
610
+ "timeElapsedSeconds": {
611
+ "type": "long"
612
+ },
613
+ "progressPercentage": {
614
+ "type": "integer"
615
+ },
616
+ "errorCount": {
617
+ "type": "integer"
618
+ },
619
+ "errorDetails": {},
620
+ "statementCount": {
621
+ "type": "long"
622
+ },
623
+ "dictionaryEntryCount": {
624
+ "type": "long"
625
+ }
626
+ }
627
+ },
628
+ "attemptNumber": {
629
+ "type": "integer"
630
+ },
631
+ "statusReason": {}
632
+ }
633
+ },
634
+ "staticContextParams": {
635
+ "ApiType": {
636
+ "value": "ControlPlane"
637
+ }
638
+ }
639
+ },
640
+ "GetPrivateGraphEndpoint": {
641
+ "http": {
642
+ "method": "GET",
643
+ "requestUri": "/graphs/{graphIdentifier}/endpoints/{vpcId}",
644
+ "responseCode": 200
645
+ },
646
+ "input": {
647
+ "type": "structure",
648
+ "required": [
649
+ "graphIdentifier",
650
+ "vpcId"
651
+ ],
652
+ "members": {
653
+ "graphIdentifier": {
654
+ "location": "uri",
655
+ "locationName": "graphIdentifier"
656
+ },
657
+ "vpcId": {
658
+ "location": "uri",
659
+ "locationName": "vpcId"
660
+ }
661
+ }
662
+ },
663
+ "output": {
664
+ "type": "structure",
665
+ "required": [
666
+ "vpcId",
667
+ "subnetIds",
668
+ "status"
669
+ ],
670
+ "members": {
671
+ "vpcId": {},
672
+ "subnetIds": {
673
+ "shape": "S11"
674
+ },
675
+ "status": {},
676
+ "vpcEndpointId": {}
677
+ }
678
+ },
679
+ "staticContextParams": {
680
+ "ApiType": {
681
+ "value": "ControlPlane"
682
+ }
683
+ }
684
+ },
685
+ "ListGraphSnapshots": {
686
+ "http": {
687
+ "method": "GET",
688
+ "requestUri": "/snapshots",
689
+ "responseCode": 200
690
+ },
691
+ "input": {
692
+ "type": "structure",
693
+ "members": {
694
+ "graphIdentifier": {
695
+ "location": "querystring",
696
+ "locationName": "graphIdentifier"
697
+ },
698
+ "nextToken": {
699
+ "location": "querystring",
700
+ "locationName": "nextToken"
701
+ },
702
+ "maxResults": {
703
+ "location": "querystring",
704
+ "locationName": "maxResults",
705
+ "type": "integer"
706
+ }
707
+ }
708
+ },
709
+ "output": {
710
+ "type": "structure",
711
+ "required": [
712
+ "graphSnapshots"
713
+ ],
714
+ "members": {
715
+ "graphSnapshots": {
716
+ "type": "list",
717
+ "member": {
718
+ "type": "structure",
719
+ "required": [
720
+ "id",
721
+ "name",
722
+ "arn"
723
+ ],
724
+ "members": {
725
+ "id": {},
726
+ "name": {},
727
+ "arn": {},
728
+ "sourceGraphId": {},
729
+ "snapshotCreateTime": {
730
+ "type": "timestamp"
731
+ },
732
+ "status": {},
733
+ "kmsKeyIdentifier": {}
734
+ }
735
+ }
736
+ },
737
+ "nextToken": {}
738
+ }
739
+ },
740
+ "staticContextParams": {
741
+ "ApiType": {
742
+ "value": "ControlPlane"
743
+ }
744
+ }
745
+ },
746
+ "ListGraphs": {
747
+ "http": {
748
+ "method": "GET",
749
+ "requestUri": "/graphs",
750
+ "responseCode": 200
751
+ },
752
+ "input": {
753
+ "type": "structure",
754
+ "members": {
755
+ "nextToken": {
756
+ "location": "querystring",
757
+ "locationName": "nextToken"
758
+ },
759
+ "maxResults": {
760
+ "location": "querystring",
761
+ "locationName": "maxResults",
762
+ "type": "integer"
763
+ }
764
+ }
765
+ },
766
+ "output": {
767
+ "type": "structure",
768
+ "required": [
769
+ "graphs"
770
+ ],
771
+ "members": {
772
+ "graphs": {
773
+ "type": "list",
774
+ "member": {
775
+ "type": "structure",
776
+ "required": [
777
+ "id",
778
+ "name",
779
+ "arn"
780
+ ],
781
+ "members": {
782
+ "id": {},
783
+ "name": {},
784
+ "arn": {},
785
+ "status": {},
786
+ "provisionedMemory": {
787
+ "type": "integer"
788
+ },
789
+ "publicConnectivity": {
790
+ "type": "boolean"
791
+ },
792
+ "endpoint": {},
793
+ "replicaCount": {
794
+ "type": "integer"
795
+ },
796
+ "kmsKeyIdentifier": {},
797
+ "deletionProtection": {
798
+ "type": "boolean"
799
+ }
800
+ }
801
+ }
802
+ },
803
+ "nextToken": {}
804
+ }
805
+ },
806
+ "staticContextParams": {
807
+ "ApiType": {
808
+ "value": "ControlPlane"
809
+ }
810
+ }
811
+ },
812
+ "ListImportTasks": {
813
+ "http": {
814
+ "method": "GET",
815
+ "requestUri": "/importtasks",
816
+ "responseCode": 200
817
+ },
818
+ "input": {
819
+ "type": "structure",
820
+ "members": {
821
+ "nextToken": {
822
+ "location": "querystring",
823
+ "locationName": "nextToken"
824
+ },
825
+ "maxResults": {
826
+ "location": "querystring",
827
+ "locationName": "maxResults",
828
+ "type": "integer"
829
+ }
830
+ }
831
+ },
832
+ "output": {
833
+ "type": "structure",
834
+ "required": [
835
+ "tasks"
836
+ ],
837
+ "members": {
838
+ "tasks": {
839
+ "type": "list",
840
+ "member": {
841
+ "type": "structure",
842
+ "required": [
843
+ "taskId",
844
+ "source",
845
+ "roleArn",
846
+ "status"
847
+ ],
848
+ "members": {
849
+ "graphId": {},
850
+ "taskId": {},
851
+ "source": {},
852
+ "format": {},
853
+ "roleArn": {},
854
+ "status": {}
855
+ }
856
+ }
857
+ },
858
+ "nextToken": {}
859
+ }
860
+ },
861
+ "staticContextParams": {
862
+ "ApiType": {
863
+ "value": "ControlPlane"
864
+ }
865
+ }
866
+ },
867
+ "ListPrivateGraphEndpoints": {
868
+ "http": {
869
+ "method": "GET",
870
+ "requestUri": "/graphs/{graphIdentifier}/endpoints/",
871
+ "responseCode": 200
872
+ },
873
+ "input": {
874
+ "type": "structure",
875
+ "required": [
876
+ "graphIdentifier"
877
+ ],
878
+ "members": {
879
+ "graphIdentifier": {
880
+ "location": "uri",
881
+ "locationName": "graphIdentifier"
882
+ },
883
+ "nextToken": {
884
+ "location": "querystring",
885
+ "locationName": "nextToken"
886
+ },
887
+ "maxResults": {
888
+ "location": "querystring",
889
+ "locationName": "maxResults",
890
+ "type": "integer"
891
+ }
892
+ }
893
+ },
894
+ "output": {
895
+ "type": "structure",
896
+ "required": [
897
+ "privateGraphEndpoints"
898
+ ],
899
+ "members": {
900
+ "privateGraphEndpoints": {
901
+ "type": "list",
902
+ "member": {
903
+ "type": "structure",
904
+ "required": [
905
+ "vpcId",
906
+ "subnetIds",
907
+ "status"
908
+ ],
909
+ "members": {
910
+ "vpcId": {},
911
+ "subnetIds": {
912
+ "shape": "S11"
913
+ },
914
+ "status": {},
915
+ "vpcEndpointId": {}
916
+ }
917
+ }
918
+ },
919
+ "nextToken": {}
920
+ }
921
+ },
922
+ "staticContextParams": {
923
+ "ApiType": {
924
+ "value": "ControlPlane"
925
+ }
926
+ }
927
+ },
928
+ "ListTagsForResource": {
929
+ "http": {
930
+ "method": "GET",
931
+ "requestUri": "/tags/{resourceArn}",
932
+ "responseCode": 200
933
+ },
934
+ "input": {
935
+ "type": "structure",
936
+ "required": [
937
+ "resourceArn"
938
+ ],
939
+ "members": {
940
+ "resourceArn": {
941
+ "location": "uri",
942
+ "locationName": "resourceArn"
943
+ }
944
+ }
945
+ },
946
+ "output": {
947
+ "type": "structure",
948
+ "members": {
949
+ "tags": {
950
+ "shape": "Sb"
951
+ }
952
+ }
953
+ },
954
+ "staticContextParams": {
955
+ "ApiType": {
956
+ "value": "ControlPlane"
957
+ }
958
+ }
959
+ },
960
+ "ResetGraph": {
961
+ "http": {
962
+ "method": "PUT",
963
+ "requestUri": "/graphs/{graphIdentifier}",
964
+ "responseCode": 200
965
+ },
966
+ "input": {
967
+ "type": "structure",
968
+ "required": [
969
+ "graphIdentifier",
970
+ "skipSnapshot"
971
+ ],
972
+ "members": {
973
+ "graphIdentifier": {
974
+ "location": "uri",
975
+ "locationName": "graphIdentifier"
976
+ },
977
+ "skipSnapshot": {
978
+ "type": "boolean"
979
+ }
980
+ }
981
+ },
982
+ "output": {
983
+ "type": "structure",
984
+ "required": [
985
+ "id",
986
+ "name",
987
+ "arn"
988
+ ],
989
+ "members": {
990
+ "id": {},
991
+ "name": {},
992
+ "arn": {},
993
+ "status": {},
994
+ "statusReason": {},
995
+ "createTime": {
996
+ "type": "timestamp"
997
+ },
998
+ "provisionedMemory": {
999
+ "type": "integer"
1000
+ },
1001
+ "endpoint": {},
1002
+ "publicConnectivity": {
1003
+ "type": "boolean"
1004
+ },
1005
+ "vectorSearchConfiguration": {
1006
+ "shape": "Sg"
1007
+ },
1008
+ "replicaCount": {
1009
+ "type": "integer"
1010
+ },
1011
+ "kmsKeyIdentifier": {},
1012
+ "sourceSnapshotId": {},
1013
+ "deletionProtection": {
1014
+ "type": "boolean"
1015
+ },
1016
+ "buildNumber": {}
1017
+ }
1018
+ },
1019
+ "staticContextParams": {
1020
+ "ApiType": {
1021
+ "value": "ControlPlane"
1022
+ }
1023
+ }
1024
+ },
1025
+ "RestoreGraphFromSnapshot": {
1026
+ "http": {
1027
+ "requestUri": "/snapshots/{snapshotIdentifier}/restore",
1028
+ "responseCode": 201
1029
+ },
1030
+ "input": {
1031
+ "type": "structure",
1032
+ "required": [
1033
+ "snapshotIdentifier",
1034
+ "graphName"
1035
+ ],
1036
+ "members": {
1037
+ "snapshotIdentifier": {
1038
+ "location": "uri",
1039
+ "locationName": "snapshotIdentifier"
1040
+ },
1041
+ "graphName": {},
1042
+ "provisionedMemory": {
1043
+ "type": "integer"
1044
+ },
1045
+ "deletionProtection": {
1046
+ "type": "boolean"
1047
+ },
1048
+ "tags": {
1049
+ "shape": "Sb"
1050
+ },
1051
+ "replicaCount": {
1052
+ "type": "integer"
1053
+ },
1054
+ "publicConnectivity": {
1055
+ "type": "boolean"
1056
+ }
1057
+ }
1058
+ },
1059
+ "output": {
1060
+ "type": "structure",
1061
+ "required": [
1062
+ "id",
1063
+ "name",
1064
+ "arn"
1065
+ ],
1066
+ "members": {
1067
+ "id": {},
1068
+ "name": {},
1069
+ "arn": {},
1070
+ "status": {},
1071
+ "statusReason": {},
1072
+ "createTime": {
1073
+ "type": "timestamp"
1074
+ },
1075
+ "provisionedMemory": {
1076
+ "type": "integer"
1077
+ },
1078
+ "endpoint": {},
1079
+ "publicConnectivity": {
1080
+ "type": "boolean"
1081
+ },
1082
+ "vectorSearchConfiguration": {
1083
+ "shape": "Sg"
1084
+ },
1085
+ "replicaCount": {
1086
+ "type": "integer"
1087
+ },
1088
+ "kmsKeyIdentifier": {},
1089
+ "sourceSnapshotId": {},
1090
+ "deletionProtection": {
1091
+ "type": "boolean"
1092
+ },
1093
+ "buildNumber": {}
1094
+ }
1095
+ },
1096
+ "staticContextParams": {
1097
+ "ApiType": {
1098
+ "value": "ControlPlane"
1099
+ }
1100
+ }
1101
+ },
1102
+ "TagResource": {
1103
+ "http": {
1104
+ "requestUri": "/tags/{resourceArn}",
1105
+ "responseCode": 200
1106
+ },
1107
+ "input": {
1108
+ "type": "structure",
1109
+ "required": [
1110
+ "resourceArn",
1111
+ "tags"
1112
+ ],
1113
+ "members": {
1114
+ "resourceArn": {
1115
+ "location": "uri",
1116
+ "locationName": "resourceArn"
1117
+ },
1118
+ "tags": {
1119
+ "shape": "Sb"
1120
+ }
1121
+ }
1122
+ },
1123
+ "output": {
1124
+ "type": "structure",
1125
+ "members": {}
1126
+ },
1127
+ "idempotent": true,
1128
+ "staticContextParams": {
1129
+ "ApiType": {
1130
+ "value": "ControlPlane"
1131
+ }
1132
+ }
1133
+ },
1134
+ "UntagResource": {
1135
+ "http": {
1136
+ "method": "DELETE",
1137
+ "requestUri": "/tags/{resourceArn}",
1138
+ "responseCode": 200
1139
+ },
1140
+ "input": {
1141
+ "type": "structure",
1142
+ "required": [
1143
+ "resourceArn",
1144
+ "tagKeys"
1145
+ ],
1146
+ "members": {
1147
+ "resourceArn": {
1148
+ "location": "uri",
1149
+ "locationName": "resourceArn"
1150
+ },
1151
+ "tagKeys": {
1152
+ "location": "querystring",
1153
+ "locationName": "tagKeys",
1154
+ "type": "list",
1155
+ "member": {}
1156
+ }
1157
+ }
1158
+ },
1159
+ "output": {
1160
+ "type": "structure",
1161
+ "members": {}
1162
+ },
1163
+ "idempotent": true,
1164
+ "staticContextParams": {
1165
+ "ApiType": {
1166
+ "value": "ControlPlane"
1167
+ }
1168
+ }
1169
+ },
1170
+ "UpdateGraph": {
1171
+ "http": {
1172
+ "method": "PATCH",
1173
+ "requestUri": "/graphs/{graphIdentifier}",
1174
+ "responseCode": 200
1175
+ },
1176
+ "input": {
1177
+ "type": "structure",
1178
+ "required": [
1179
+ "graphIdentifier"
1180
+ ],
1181
+ "members": {
1182
+ "graphIdentifier": {
1183
+ "location": "uri",
1184
+ "locationName": "graphIdentifier"
1185
+ },
1186
+ "publicConnectivity": {
1187
+ "type": "boolean"
1188
+ },
1189
+ "provisionedMemory": {
1190
+ "type": "integer"
1191
+ },
1192
+ "deletionProtection": {
1193
+ "type": "boolean"
1194
+ }
1195
+ }
1196
+ },
1197
+ "output": {
1198
+ "type": "structure",
1199
+ "required": [
1200
+ "id",
1201
+ "name",
1202
+ "arn"
1203
+ ],
1204
+ "members": {
1205
+ "id": {},
1206
+ "name": {},
1207
+ "arn": {},
1208
+ "status": {},
1209
+ "statusReason": {},
1210
+ "createTime": {
1211
+ "type": "timestamp"
1212
+ },
1213
+ "provisionedMemory": {
1214
+ "type": "integer"
1215
+ },
1216
+ "endpoint": {},
1217
+ "publicConnectivity": {
1218
+ "type": "boolean"
1219
+ },
1220
+ "vectorSearchConfiguration": {
1221
+ "shape": "Sg"
1222
+ },
1223
+ "replicaCount": {
1224
+ "type": "integer"
1225
+ },
1226
+ "kmsKeyIdentifier": {},
1227
+ "sourceSnapshotId": {},
1228
+ "deletionProtection": {
1229
+ "type": "boolean"
1230
+ },
1231
+ "buildNumber": {}
1232
+ }
1233
+ },
1234
+ "staticContextParams": {
1235
+ "ApiType": {
1236
+ "value": "ControlPlane"
1237
+ }
1238
+ }
1239
+ }
1240
+ },
1241
+ "shapes": {
1242
+ "Sb": {
1243
+ "type": "map",
1244
+ "key": {},
1245
+ "value": {}
1246
+ },
1247
+ "Sg": {
1248
+ "type": "structure",
1249
+ "required": [
1250
+ "dimension"
1251
+ ],
1252
+ "members": {
1253
+ "dimension": {
1254
+ "type": "integer"
1255
+ }
1256
+ }
1257
+ },
1258
+ "Su": {
1259
+ "type": "structure",
1260
+ "members": {
1261
+ "neptune": {
1262
+ "type": "structure",
1263
+ "required": [
1264
+ "s3ExportPath",
1265
+ "s3ExportKmsKeyId"
1266
+ ],
1267
+ "members": {
1268
+ "s3ExportPath": {},
1269
+ "s3ExportKmsKeyId": {},
1270
+ "preserveDefaultVertexLabels": {
1271
+ "type": "boolean"
1272
+ },
1273
+ "preserveEdgeIds": {
1274
+ "type": "boolean"
1275
+ }
1276
+ }
1277
+ }
1278
+ },
1279
+ "union": true
1280
+ },
1281
+ "S11": {
1282
+ "type": "list",
1283
+ "member": {}
1284
+ }
1285
+ }
1286
+ }