cdk-docker-image-deployment 0.0.89 → 0.0.90

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 (42) hide show
  1. package/.jsii +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +11 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/accessanalyzer-2019-11-01.min.json +2 -1
  8. package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +762 -46
  9. package/node_modules/aws-sdk/apis/athena-2017-05-18.paginators.json +20 -0
  10. package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +230 -14
  11. package/node_modules/aws-sdk/apis/docdb-elastic-2022-11-28.examples.json +5 -0
  12. package/node_modules/aws-sdk/apis/docdb-elastic-2022-11-28.min.json +586 -0
  13. package/node_modules/aws-sdk/apis/docdb-elastic-2022-11-28.paginators.json +16 -0
  14. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +1169 -483
  15. package/node_modules/aws-sdk/apis/glue-2017-03-31.paginators.json +20 -0
  16. package/node_modules/aws-sdk/apis/metadata.json +8 -0
  17. package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +6 -3
  18. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +2666 -931
  19. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.paginators.json +42 -0
  20. package/node_modules/aws-sdk/apis/sagemaker-geospatial-2020-05-27.examples.json +5 -0
  21. package/node_modules/aws-sdk/apis/sagemaker-geospatial-2020-05-27.min.json +1516 -0
  22. package/node_modules/aws-sdk/apis/sagemaker-geospatial-2020-05-27.paginators.json +26 -0
  23. package/node_modules/aws-sdk/clients/accessanalyzer.d.ts +5 -1
  24. package/node_modules/aws-sdk/clients/all.d.ts +2 -0
  25. package/node_modules/aws-sdk/clients/all.js +3 -1
  26. package/node_modules/aws-sdk/clients/athena.d.ts +1043 -42
  27. package/node_modules/aws-sdk/clients/dataexchange.d.ts +269 -26
  28. package/node_modules/aws-sdk/clients/docdbelastic.d.ts +565 -0
  29. package/node_modules/aws-sdk/clients/docdbelastic.js +18 -0
  30. package/node_modules/aws-sdk/clients/glue.d.ts +1026 -83
  31. package/node_modules/aws-sdk/clients/s3control.d.ts +18 -6
  32. package/node_modules/aws-sdk/clients/sagemaker.d.ts +2434 -98
  33. package/node_modules/aws-sdk/clients/sagemakergeospatial.d.ts +1610 -0
  34. package/node_modules/aws-sdk/clients/sagemakergeospatial.js +18 -0
  35. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  36. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +87 -13
  37. package/node_modules/aws-sdk/dist/aws-sdk.js +765 -21
  38. package/node_modules/aws-sdk/dist/aws-sdk.min.js +96 -96
  39. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
  40. package/node_modules/aws-sdk/lib/core.js +1 -1
  41. package/node_modules/aws-sdk/package.json +1 -1
  42. package/package.json +3 -3
@@ -171,6 +171,26 @@
171
171
  },
172
172
  "idempotent": true
173
173
  },
174
+ "CreateNotebook": {
175
+ "input": {
176
+ "type": "structure",
177
+ "required": [
178
+ "WorkGroup",
179
+ "Name"
180
+ ],
181
+ "members": {
182
+ "WorkGroup": {},
183
+ "Name": {},
184
+ "ClientRequestToken": {}
185
+ }
186
+ },
187
+ "output": {
188
+ "type": "structure",
189
+ "members": {
190
+ "NotebookId": {}
191
+ }
192
+ }
193
+ },
174
194
  "CreatePreparedStatement": {
175
195
  "input": {
176
196
  "type": "structure",
@@ -191,6 +211,32 @@
191
211
  "members": {}
192
212
  }
193
213
  },
214
+ "CreatePresignedNotebookUrl": {
215
+ "input": {
216
+ "type": "structure",
217
+ "required": [
218
+ "SessionId"
219
+ ],
220
+ "members": {
221
+ "SessionId": {}
222
+ }
223
+ },
224
+ "output": {
225
+ "type": "structure",
226
+ "required": [
227
+ "NotebookUrl",
228
+ "AuthToken",
229
+ "AuthTokenExpirationTime"
230
+ ],
231
+ "members": {
232
+ "NotebookUrl": {},
233
+ "AuthToken": {},
234
+ "AuthTokenExpirationTime": {
235
+ "type": "long"
236
+ }
237
+ }
238
+ }
239
+ },
194
240
  "CreateWorkGroup": {
195
241
  "input": {
196
242
  "type": "structure",
@@ -200,7 +246,7 @@
200
246
  "members": {
201
247
  "Name": {},
202
248
  "Configuration": {
203
- "shape": "S23"
249
+ "shape": "S2c"
204
250
  },
205
251
  "Description": {},
206
252
  "Tags": {
@@ -246,6 +292,21 @@
246
292
  },
247
293
  "idempotent": true
248
294
  },
295
+ "DeleteNotebook": {
296
+ "input": {
297
+ "type": "structure",
298
+ "required": [
299
+ "NotebookId"
300
+ ],
301
+ "members": {
302
+ "NotebookId": {}
303
+ }
304
+ },
305
+ "output": {
306
+ "type": "structure",
307
+ "members": {}
308
+ }
309
+ },
249
310
  "DeletePreparedStatement": {
250
311
  "input": {
251
312
  "type": "structure",
@@ -282,6 +343,100 @@
282
343
  },
283
344
  "idempotent": true
284
345
  },
346
+ "ExportNotebook": {
347
+ "input": {
348
+ "type": "structure",
349
+ "required": [
350
+ "NotebookId"
351
+ ],
352
+ "members": {
353
+ "NotebookId": {}
354
+ }
355
+ },
356
+ "output": {
357
+ "type": "structure",
358
+ "members": {
359
+ "NotebookMetadata": {
360
+ "shape": "S2w"
361
+ },
362
+ "Payload": {}
363
+ }
364
+ }
365
+ },
366
+ "GetCalculationExecution": {
367
+ "input": {
368
+ "type": "structure",
369
+ "required": [
370
+ "CalculationExecutionId"
371
+ ],
372
+ "members": {
373
+ "CalculationExecutionId": {}
374
+ }
375
+ },
376
+ "output": {
377
+ "type": "structure",
378
+ "members": {
379
+ "CalculationExecutionId": {},
380
+ "SessionId": {},
381
+ "Description": {},
382
+ "WorkingDirectory": {},
383
+ "Status": {
384
+ "shape": "S33"
385
+ },
386
+ "Statistics": {
387
+ "shape": "S35"
388
+ },
389
+ "Result": {
390
+ "type": "structure",
391
+ "members": {
392
+ "StdOutS3Uri": {},
393
+ "StdErrorS3Uri": {},
394
+ "ResultS3Uri": {},
395
+ "ResultType": {}
396
+ }
397
+ }
398
+ }
399
+ }
400
+ },
401
+ "GetCalculationExecutionCode": {
402
+ "input": {
403
+ "type": "structure",
404
+ "required": [
405
+ "CalculationExecutionId"
406
+ ],
407
+ "members": {
408
+ "CalculationExecutionId": {}
409
+ }
410
+ },
411
+ "output": {
412
+ "type": "structure",
413
+ "members": {
414
+ "CodeBlock": {}
415
+ }
416
+ }
417
+ },
418
+ "GetCalculationExecutionStatus": {
419
+ "input": {
420
+ "type": "structure",
421
+ "required": [
422
+ "CalculationExecutionId"
423
+ ],
424
+ "members": {
425
+ "CalculationExecutionId": {}
426
+ }
427
+ },
428
+ "output": {
429
+ "type": "structure",
430
+ "members": {
431
+ "Status": {
432
+ "shape": "S33"
433
+ },
434
+ "Statistics": {
435
+ "shape": "S35"
436
+ }
437
+ }
438
+ }
439
+ },
285
440
  "GetDataCatalog": {
286
441
  "input": {
287
442
  "type": "structure",
@@ -329,7 +484,7 @@
329
484
  "type": "structure",
330
485
  "members": {
331
486
  "Database": {
332
- "shape": "S2l"
487
+ "shape": "S3i"
333
488
  }
334
489
  }
335
490
  }
@@ -353,6 +508,25 @@
353
508
  }
354
509
  }
355
510
  },
511
+ "GetNotebookMetadata": {
512
+ "input": {
513
+ "type": "structure",
514
+ "required": [
515
+ "NotebookId"
516
+ ],
517
+ "members": {
518
+ "NotebookId": {}
519
+ }
520
+ },
521
+ "output": {
522
+ "type": "structure",
523
+ "members": {
524
+ "NotebookMetadata": {
525
+ "shape": "S2w"
526
+ }
527
+ }
528
+ }
529
+ },
356
530
  "GetPreparedStatement": {
357
531
  "input": {
358
532
  "type": "structure",
@@ -526,13 +700,81 @@
526
700
  }
527
701
  },
528
702
  "OutputStage": {
529
- "shape": "S3c"
703
+ "shape": "S4b"
530
704
  }
531
705
  }
532
706
  }
533
707
  }
534
708
  }
535
709
  },
710
+ "GetSession": {
711
+ "input": {
712
+ "type": "structure",
713
+ "required": [
714
+ "SessionId"
715
+ ],
716
+ "members": {
717
+ "SessionId": {}
718
+ }
719
+ },
720
+ "output": {
721
+ "type": "structure",
722
+ "members": {
723
+ "SessionId": {},
724
+ "Description": {},
725
+ "WorkGroup": {},
726
+ "EngineVersion": {},
727
+ "EngineConfiguration": {
728
+ "shape": "S4i"
729
+ },
730
+ "NotebookVersion": {},
731
+ "SessionConfiguration": {
732
+ "type": "structure",
733
+ "members": {
734
+ "ExecutionRole": {},
735
+ "WorkingDirectory": {},
736
+ "IdleTimeoutSeconds": {
737
+ "type": "long"
738
+ },
739
+ "EncryptionConfiguration": {
740
+ "shape": "Sy"
741
+ }
742
+ }
743
+ },
744
+ "Status": {
745
+ "shape": "S4n"
746
+ },
747
+ "Statistics": {
748
+ "type": "structure",
749
+ "members": {
750
+ "DpuExecutionInMillis": {
751
+ "type": "long"
752
+ }
753
+ }
754
+ }
755
+ }
756
+ }
757
+ },
758
+ "GetSessionStatus": {
759
+ "input": {
760
+ "type": "structure",
761
+ "required": [
762
+ "SessionId"
763
+ ],
764
+ "members": {
765
+ "SessionId": {}
766
+ }
767
+ },
768
+ "output": {
769
+ "type": "structure",
770
+ "members": {
771
+ "SessionId": {},
772
+ "Status": {
773
+ "shape": "S4n"
774
+ }
775
+ }
776
+ }
777
+ },
536
778
  "GetTableMetadata": {
537
779
  "input": {
538
780
  "type": "structure",
@@ -551,7 +793,7 @@
551
793
  "type": "structure",
552
794
  "members": {
553
795
  "TableMetadata": {
554
- "shape": "S3j"
796
+ "shape": "S4u"
555
797
  }
556
798
  }
557
799
  }
@@ -578,7 +820,7 @@
578
820
  "Name": {},
579
821
  "State": {},
580
822
  "Configuration": {
581
- "shape": "S23"
823
+ "shape": "S2c"
582
824
  },
583
825
  "Description": {},
584
826
  "CreationTime": {
@@ -589,99 +831,308 @@
589
831
  }
590
832
  }
591
833
  },
834
+ "ImportNotebook": {
835
+ "input": {
836
+ "type": "structure",
837
+ "required": [
838
+ "WorkGroup",
839
+ "Name",
840
+ "Payload",
841
+ "Type"
842
+ ],
843
+ "members": {
844
+ "WorkGroup": {},
845
+ "Name": {},
846
+ "Payload": {},
847
+ "Type": {},
848
+ "ClientRequestToken": {}
849
+ }
850
+ },
851
+ "output": {
852
+ "type": "structure",
853
+ "members": {
854
+ "NotebookId": {}
855
+ }
856
+ }
857
+ },
858
+ "ListApplicationDPUSizes": {
859
+ "input": {
860
+ "type": "structure",
861
+ "members": {
862
+ "MaxResults": {
863
+ "type": "integer"
864
+ },
865
+ "NextToken": {}
866
+ }
867
+ },
868
+ "output": {
869
+ "type": "structure",
870
+ "members": {
871
+ "ApplicationDPUSizes": {
872
+ "type": "list",
873
+ "member": {
874
+ "type": "structure",
875
+ "members": {
876
+ "ApplicationRuntimeId": {},
877
+ "SupportedDPUSizes": {
878
+ "type": "list",
879
+ "member": {
880
+ "type": "integer"
881
+ }
882
+ }
883
+ }
884
+ }
885
+ },
886
+ "NextToken": {}
887
+ }
888
+ }
889
+ },
890
+ "ListCalculationExecutions": {
891
+ "input": {
892
+ "type": "structure",
893
+ "required": [
894
+ "SessionId"
895
+ ],
896
+ "members": {
897
+ "SessionId": {},
898
+ "StateFilter": {},
899
+ "MaxResults": {
900
+ "type": "integer"
901
+ },
902
+ "NextToken": {}
903
+ }
904
+ },
905
+ "output": {
906
+ "type": "structure",
907
+ "members": {
908
+ "NextToken": {},
909
+ "Calculations": {
910
+ "type": "list",
911
+ "member": {
912
+ "type": "structure",
913
+ "members": {
914
+ "CalculationExecutionId": {},
915
+ "Description": {},
916
+ "Status": {
917
+ "shape": "S33"
918
+ }
919
+ }
920
+ }
921
+ }
922
+ }
923
+ }
924
+ },
592
925
  "ListDataCatalogs": {
593
926
  "input": {
594
927
  "type": "structure",
595
928
  "members": {
596
- "NextToken": {},
929
+ "NextToken": {},
930
+ "MaxResults": {
931
+ "type": "integer"
932
+ }
933
+ }
934
+ },
935
+ "output": {
936
+ "type": "structure",
937
+ "members": {
938
+ "DataCatalogsSummary": {
939
+ "type": "list",
940
+ "member": {
941
+ "type": "structure",
942
+ "members": {
943
+ "CatalogName": {},
944
+ "Type": {}
945
+ }
946
+ }
947
+ },
948
+ "NextToken": {}
949
+ }
950
+ }
951
+ },
952
+ "ListDatabases": {
953
+ "input": {
954
+ "type": "structure",
955
+ "required": [
956
+ "CatalogName"
957
+ ],
958
+ "members": {
959
+ "CatalogName": {},
960
+ "NextToken": {},
961
+ "MaxResults": {
962
+ "type": "integer"
963
+ }
964
+ }
965
+ },
966
+ "output": {
967
+ "type": "structure",
968
+ "members": {
969
+ "DatabaseList": {
970
+ "type": "list",
971
+ "member": {
972
+ "shape": "S3i"
973
+ }
974
+ },
975
+ "NextToken": {}
976
+ }
977
+ }
978
+ },
979
+ "ListEngineVersions": {
980
+ "input": {
981
+ "type": "structure",
982
+ "members": {
983
+ "NextToken": {},
984
+ "MaxResults": {
985
+ "type": "integer"
986
+ }
987
+ }
988
+ },
989
+ "output": {
990
+ "type": "structure",
991
+ "members": {
992
+ "EngineVersions": {
993
+ "type": "list",
994
+ "member": {
995
+ "shape": "S1i"
996
+ }
997
+ },
998
+ "NextToken": {}
999
+ }
1000
+ }
1001
+ },
1002
+ "ListExecutors": {
1003
+ "input": {
1004
+ "type": "structure",
1005
+ "required": [
1006
+ "SessionId"
1007
+ ],
1008
+ "members": {
1009
+ "SessionId": {},
1010
+ "ExecutorStateFilter": {},
597
1011
  "MaxResults": {
598
1012
  "type": "integer"
599
- }
1013
+ },
1014
+ "NextToken": {}
600
1015
  }
601
1016
  },
602
1017
  "output": {
603
1018
  "type": "structure",
1019
+ "required": [
1020
+ "SessionId"
1021
+ ],
604
1022
  "members": {
605
- "DataCatalogsSummary": {
1023
+ "SessionId": {},
1024
+ "NextToken": {},
1025
+ "ExecutorsSummary": {
606
1026
  "type": "list",
607
1027
  "member": {
608
1028
  "type": "structure",
1029
+ "required": [
1030
+ "ExecutorId"
1031
+ ],
609
1032
  "members": {
610
- "CatalogName": {},
611
- "Type": {}
1033
+ "ExecutorId": {},
1034
+ "ExecutorType": {},
1035
+ "StartDateTime": {
1036
+ "type": "long"
1037
+ },
1038
+ "TerminationDateTime": {
1039
+ "type": "long"
1040
+ },
1041
+ "ExecutorState": {},
1042
+ "ExecutorSize": {
1043
+ "type": "long"
1044
+ }
612
1045
  }
613
1046
  }
614
- },
615
- "NextToken": {}
1047
+ }
616
1048
  }
617
1049
  }
618
1050
  },
619
- "ListDatabases": {
1051
+ "ListNamedQueries": {
620
1052
  "input": {
621
1053
  "type": "structure",
622
- "required": [
623
- "CatalogName"
624
- ],
625
1054
  "members": {
626
- "CatalogName": {},
627
1055
  "NextToken": {},
628
1056
  "MaxResults": {
629
1057
  "type": "integer"
630
- }
1058
+ },
1059
+ "WorkGroup": {}
631
1060
  }
632
1061
  },
633
1062
  "output": {
634
1063
  "type": "structure",
635
1064
  "members": {
636
- "DatabaseList": {
637
- "type": "list",
638
- "member": {
639
- "shape": "S2l"
640
- }
1065
+ "NamedQueryIds": {
1066
+ "shape": "S2"
641
1067
  },
642
1068
  "NextToken": {}
643
1069
  }
644
1070
  }
645
1071
  },
646
- "ListEngineVersions": {
1072
+ "ListNotebookMetadata": {
647
1073
  "input": {
648
1074
  "type": "structure",
1075
+ "required": [
1076
+ "WorkGroup"
1077
+ ],
649
1078
  "members": {
1079
+ "Filters": {
1080
+ "type": "structure",
1081
+ "members": {
1082
+ "Name": {}
1083
+ }
1084
+ },
650
1085
  "NextToken": {},
651
1086
  "MaxResults": {
652
1087
  "type": "integer"
653
- }
1088
+ },
1089
+ "WorkGroup": {}
654
1090
  }
655
1091
  },
656
1092
  "output": {
657
1093
  "type": "structure",
658
1094
  "members": {
659
- "EngineVersions": {
1095
+ "NextToken": {},
1096
+ "NotebookMetadataList": {
660
1097
  "type": "list",
661
1098
  "member": {
662
- "shape": "S1i"
1099
+ "shape": "S2w"
663
1100
  }
664
- },
665
- "NextToken": {}
1101
+ }
666
1102
  }
667
1103
  }
668
1104
  },
669
- "ListNamedQueries": {
1105
+ "ListNotebookSessions": {
670
1106
  "input": {
671
1107
  "type": "structure",
1108
+ "required": [
1109
+ "NotebookId"
1110
+ ],
672
1111
  "members": {
673
- "NextToken": {},
1112
+ "NotebookId": {},
674
1113
  "MaxResults": {
675
1114
  "type": "integer"
676
1115
  },
677
- "WorkGroup": {}
1116
+ "NextToken": {}
678
1117
  }
679
1118
  },
680
1119
  "output": {
681
1120
  "type": "structure",
1121
+ "required": [
1122
+ "NotebookSessionsList"
1123
+ ],
682
1124
  "members": {
683
- "NamedQueryIds": {
684
- "shape": "S2"
1125
+ "NotebookSessionsList": {
1126
+ "type": "list",
1127
+ "member": {
1128
+ "type": "structure",
1129
+ "members": {
1130
+ "SessionId": {},
1131
+ "CreationTime": {
1132
+ "type": "timestamp"
1133
+ }
1134
+ }
1135
+ }
685
1136
  },
686
1137
  "NextToken": {}
687
1138
  }
@@ -741,6 +1192,45 @@
741
1192
  }
742
1193
  }
743
1194
  },
1195
+ "ListSessions": {
1196
+ "input": {
1197
+ "type": "structure",
1198
+ "required": [
1199
+ "WorkGroup"
1200
+ ],
1201
+ "members": {
1202
+ "WorkGroup": {},
1203
+ "StateFilter": {},
1204
+ "MaxResults": {
1205
+ "type": "integer"
1206
+ },
1207
+ "NextToken": {}
1208
+ }
1209
+ },
1210
+ "output": {
1211
+ "type": "structure",
1212
+ "members": {
1213
+ "NextToken": {},
1214
+ "Sessions": {
1215
+ "type": "list",
1216
+ "member": {
1217
+ "type": "structure",
1218
+ "members": {
1219
+ "SessionId": {},
1220
+ "Description": {},
1221
+ "EngineVersion": {
1222
+ "shape": "S1i"
1223
+ },
1224
+ "NotebookVersion": {},
1225
+ "Status": {
1226
+ "shape": "S4n"
1227
+ }
1228
+ }
1229
+ }
1230
+ }
1231
+ }
1232
+ }
1233
+ },
744
1234
  "ListTableMetadata": {
745
1235
  "input": {
746
1236
  "type": "structure",
@@ -764,7 +1254,7 @@
764
1254
  "TableMetadataList": {
765
1255
  "type": "list",
766
1256
  "member": {
767
- "shape": "S3j"
1257
+ "shape": "S4u"
768
1258
  }
769
1259
  },
770
1260
  "NextToken": {}
@@ -829,6 +1319,35 @@
829
1319
  }
830
1320
  }
831
1321
  },
1322
+ "StartCalculationExecution": {
1323
+ "input": {
1324
+ "type": "structure",
1325
+ "required": [
1326
+ "SessionId"
1327
+ ],
1328
+ "members": {
1329
+ "SessionId": {},
1330
+ "Description": {},
1331
+ "CalculationConfiguration": {
1332
+ "deprecated": true,
1333
+ "deprecatedMessage": "Kepler Post GA Tasks : https://sim.amazon.com/issues/ATHENA-39828",
1334
+ "type": "structure",
1335
+ "members": {
1336
+ "CodeBlock": {}
1337
+ }
1338
+ },
1339
+ "CodeBlock": {},
1340
+ "ClientRequestToken": {}
1341
+ }
1342
+ },
1343
+ "output": {
1344
+ "type": "structure",
1345
+ "members": {
1346
+ "CalculationExecutionId": {},
1347
+ "State": {}
1348
+ }
1349
+ }
1350
+ },
832
1351
  "StartQueryExecution": {
833
1352
  "input": {
834
1353
  "type": "structure",
@@ -863,6 +1382,51 @@
863
1382
  },
864
1383
  "idempotent": true
865
1384
  },
1385
+ "StartSession": {
1386
+ "input": {
1387
+ "type": "structure",
1388
+ "required": [
1389
+ "WorkGroup",
1390
+ "EngineConfiguration"
1391
+ ],
1392
+ "members": {
1393
+ "Description": {},
1394
+ "WorkGroup": {},
1395
+ "EngineConfiguration": {
1396
+ "shape": "S4i"
1397
+ },
1398
+ "NotebookVersion": {},
1399
+ "SessionIdleTimeoutInMinutes": {
1400
+ "type": "integer"
1401
+ },
1402
+ "ClientRequestToken": {}
1403
+ }
1404
+ },
1405
+ "output": {
1406
+ "type": "structure",
1407
+ "members": {
1408
+ "SessionId": {},
1409
+ "State": {}
1410
+ }
1411
+ }
1412
+ },
1413
+ "StopCalculationExecution": {
1414
+ "input": {
1415
+ "type": "structure",
1416
+ "required": [
1417
+ "CalculationExecutionId"
1418
+ ],
1419
+ "members": {
1420
+ "CalculationExecutionId": {}
1421
+ }
1422
+ },
1423
+ "output": {
1424
+ "type": "structure",
1425
+ "members": {
1426
+ "State": {}
1427
+ }
1428
+ }
1429
+ },
866
1430
  "StopQueryExecution": {
867
1431
  "input": {
868
1432
  "type": "structure",
@@ -900,6 +1464,23 @@
900
1464
  "members": {}
901
1465
  }
902
1466
  },
1467
+ "TerminateSession": {
1468
+ "input": {
1469
+ "type": "structure",
1470
+ "required": [
1471
+ "SessionId"
1472
+ ],
1473
+ "members": {
1474
+ "SessionId": {}
1475
+ }
1476
+ },
1477
+ "output": {
1478
+ "type": "structure",
1479
+ "members": {
1480
+ "State": {}
1481
+ }
1482
+ }
1483
+ },
903
1484
  "UntagResource": {
904
1485
  "input": {
905
1486
  "type": "structure",
@@ -962,6 +1543,43 @@
962
1543
  },
963
1544
  "idempotent": true
964
1545
  },
1546
+ "UpdateNotebook": {
1547
+ "input": {
1548
+ "type": "structure",
1549
+ "required": [
1550
+ "NotebookId"
1551
+ ],
1552
+ "members": {
1553
+ "NotebookId": {},
1554
+ "Payload": {},
1555
+ "Type": {},
1556
+ "SessionId": {},
1557
+ "ClientRequestToken": {}
1558
+ }
1559
+ },
1560
+ "output": {
1561
+ "type": "structure",
1562
+ "members": {}
1563
+ }
1564
+ },
1565
+ "UpdateNotebookMetadata": {
1566
+ "input": {
1567
+ "type": "structure",
1568
+ "required": [
1569
+ "NotebookId",
1570
+ "Name"
1571
+ ],
1572
+ "members": {
1573
+ "NotebookId": {},
1574
+ "ClientRequestToken": {},
1575
+ "Name": {}
1576
+ }
1577
+ },
1578
+ "output": {
1579
+ "type": "structure",
1580
+ "members": {}
1581
+ }
1582
+ },
965
1583
  "UpdatePreparedStatement": {
966
1584
  "input": {
967
1585
  "type": "structure",
@@ -1036,6 +1654,14 @@
1036
1654
  },
1037
1655
  "EngineVersion": {
1038
1656
  "shape": "S1i"
1657
+ },
1658
+ "RemoveCustomerContentEncryptionConfiguration": {
1659
+ "type": "boolean"
1660
+ },
1661
+ "AdditionalConfiguration": {},
1662
+ "ExecutionRole": {},
1663
+ "CustomerContentEncryptionConfiguration": {
1664
+ "shape": "S2g"
1039
1665
  }
1040
1666
  }
1041
1667
  },
@@ -1256,7 +1882,7 @@
1256
1882
  }
1257
1883
  }
1258
1884
  },
1259
- "S23": {
1885
+ "S2c": {
1260
1886
  "type": "structure",
1261
1887
  "members": {
1262
1888
  "ResultConfiguration": {
@@ -1276,10 +1902,61 @@
1276
1902
  },
1277
1903
  "EngineVersion": {
1278
1904
  "shape": "S1i"
1905
+ },
1906
+ "AdditionalConfiguration": {},
1907
+ "ExecutionRole": {},
1908
+ "CustomerContentEncryptionConfiguration": {
1909
+ "shape": "S2g"
1910
+ }
1911
+ }
1912
+ },
1913
+ "S2g": {
1914
+ "type": "structure",
1915
+ "required": [
1916
+ "KmsKey"
1917
+ ],
1918
+ "members": {
1919
+ "KmsKey": {}
1920
+ }
1921
+ },
1922
+ "S2w": {
1923
+ "type": "structure",
1924
+ "members": {
1925
+ "NotebookId": {},
1926
+ "Name": {},
1927
+ "WorkGroup": {},
1928
+ "CreationTime": {
1929
+ "type": "timestamp"
1930
+ },
1931
+ "Type": {},
1932
+ "LastModifiedTime": {
1933
+ "type": "timestamp"
1279
1934
  }
1280
1935
  }
1281
1936
  },
1282
- "S2l": {
1937
+ "S33": {
1938
+ "type": "structure",
1939
+ "members": {
1940
+ "SubmissionDateTime": {
1941
+ "type": "timestamp"
1942
+ },
1943
+ "CompletionDateTime": {
1944
+ "type": "timestamp"
1945
+ },
1946
+ "State": {},
1947
+ "StateChangeReason": {}
1948
+ }
1949
+ },
1950
+ "S35": {
1951
+ "type": "structure",
1952
+ "members": {
1953
+ "DpuExecutionInMillis": {
1954
+ "type": "long"
1955
+ },
1956
+ "Progress": {}
1957
+ }
1958
+ },
1959
+ "S3i": {
1283
1960
  "type": "structure",
1284
1961
  "required": [
1285
1962
  "Name"
@@ -1292,7 +1969,7 @@
1292
1969
  }
1293
1970
  }
1294
1971
  },
1295
- "S3c": {
1972
+ "S4b": {
1296
1973
  "type": "structure",
1297
1974
  "members": {
1298
1975
  "StageId": {
@@ -1315,17 +1992,17 @@
1315
1992
  "type": "long"
1316
1993
  },
1317
1994
  "QueryStagePlan": {
1318
- "shape": "S3d"
1995
+ "shape": "S4c"
1319
1996
  },
1320
1997
  "SubStages": {
1321
1998
  "type": "list",
1322
1999
  "member": {
1323
- "shape": "S3c"
2000
+ "shape": "S4b"
1324
2001
  }
1325
2002
  }
1326
2003
  }
1327
2004
  },
1328
- "S3d": {
2005
+ "S4c": {
1329
2006
  "type": "structure",
1330
2007
  "members": {
1331
2008
  "Name": {},
@@ -1333,7 +2010,7 @@
1333
2010
  "Children": {
1334
2011
  "type": "list",
1335
2012
  "member": {
1336
- "shape": "S3d"
2013
+ "shape": "S4c"
1337
2014
  }
1338
2015
  },
1339
2016
  "RemoteSources": {
@@ -1342,7 +2019,46 @@
1342
2019
  }
1343
2020
  }
1344
2021
  },
1345
- "S3j": {
2022
+ "S4i": {
2023
+ "type": "structure",
2024
+ "required": [
2025
+ "MaxConcurrentDpus"
2026
+ ],
2027
+ "members": {
2028
+ "CoordinatorDpuSize": {
2029
+ "type": "integer"
2030
+ },
2031
+ "MaxConcurrentDpus": {
2032
+ "type": "integer"
2033
+ },
2034
+ "DefaultExecutorDpuSize": {
2035
+ "type": "integer"
2036
+ },
2037
+ "AdditionalConfigs": {
2038
+ "shape": "S1p"
2039
+ }
2040
+ }
2041
+ },
2042
+ "S4n": {
2043
+ "type": "structure",
2044
+ "members": {
2045
+ "StartDateTime": {
2046
+ "type": "timestamp"
2047
+ },
2048
+ "LastModifiedDateTime": {
2049
+ "type": "timestamp"
2050
+ },
2051
+ "EndDateTime": {
2052
+ "type": "timestamp"
2053
+ },
2054
+ "IdleSinceDateTime": {
2055
+ "type": "timestamp"
2056
+ },
2057
+ "State": {},
2058
+ "StateChangeReason": {}
2059
+ }
2060
+ },
2061
+ "S4u": {
1346
2062
  "type": "structure",
1347
2063
  "required": [
1348
2064
  "Name"
@@ -1357,17 +2073,17 @@
1357
2073
  },
1358
2074
  "TableType": {},
1359
2075
  "Columns": {
1360
- "shape": "S3m"
2076
+ "shape": "S4x"
1361
2077
  },
1362
2078
  "PartitionKeys": {
1363
- "shape": "S3m"
2079
+ "shape": "S4x"
1364
2080
  },
1365
2081
  "Parameters": {
1366
2082
  "shape": "S1p"
1367
2083
  }
1368
2084
  }
1369
2085
  },
1370
- "S3m": {
2086
+ "S4x": {
1371
2087
  "type": "list",
1372
2088
  "member": {
1373
2089
  "type": "structure",