aws-sdk-athena 1.80.0 → 1.81.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,1323 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::Athena
9
+ module Types
10
+
11
+ class AclConfiguration
12
+ attr_accessor s3_acl_option: ("BUCKET_OWNER_FULL_CONTROL")
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class ApplicationDPUSizes
17
+ attr_accessor application_runtime_id: ::String
18
+ attr_accessor supported_dpu_sizes: ::Array[::Integer]
19
+ SENSITIVE: []
20
+ end
21
+
22
+ class AthenaError
23
+ attr_accessor error_category: ::Integer
24
+ attr_accessor error_type: ::Integer
25
+ attr_accessor retryable: bool
26
+ attr_accessor error_message: ::String
27
+ SENSITIVE: []
28
+ end
29
+
30
+ class BatchGetNamedQueryInput
31
+ attr_accessor named_query_ids: ::Array[::String]
32
+ SENSITIVE: []
33
+ end
34
+
35
+ class BatchGetNamedQueryOutput
36
+ attr_accessor named_queries: ::Array[Types::NamedQuery]
37
+ attr_accessor unprocessed_named_query_ids: ::Array[Types::UnprocessedNamedQueryId]
38
+ SENSITIVE: []
39
+ end
40
+
41
+ class BatchGetPreparedStatementInput
42
+ attr_accessor prepared_statement_names: ::Array[::String]
43
+ attr_accessor work_group: ::String
44
+ SENSITIVE: []
45
+ end
46
+
47
+ class BatchGetPreparedStatementOutput
48
+ attr_accessor prepared_statements: ::Array[Types::PreparedStatement]
49
+ attr_accessor unprocessed_prepared_statement_names: ::Array[Types::UnprocessedPreparedStatementName]
50
+ SENSITIVE: []
51
+ end
52
+
53
+ class BatchGetQueryExecutionInput
54
+ attr_accessor query_execution_ids: ::Array[::String]
55
+ SENSITIVE: []
56
+ end
57
+
58
+ class BatchGetQueryExecutionOutput
59
+ attr_accessor query_executions: ::Array[Types::QueryExecution]
60
+ attr_accessor unprocessed_query_execution_ids: ::Array[Types::UnprocessedQueryExecutionId]
61
+ SENSITIVE: []
62
+ end
63
+
64
+ class CalculationConfiguration
65
+ attr_accessor code_block: ::String
66
+ SENSITIVE: []
67
+ end
68
+
69
+ class CalculationResult
70
+ attr_accessor std_out_s3_uri: ::String
71
+ attr_accessor std_error_s3_uri: ::String
72
+ attr_accessor result_s3_uri: ::String
73
+ attr_accessor result_type: ::String
74
+ SENSITIVE: []
75
+ end
76
+
77
+ class CalculationStatistics
78
+ attr_accessor dpu_execution_in_millis: ::Integer
79
+ attr_accessor progress: ::String
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class CalculationStatus
84
+ attr_accessor submission_date_time: ::Time
85
+ attr_accessor completion_date_time: ::Time
86
+ attr_accessor state: ("CREATING" | "CREATED" | "QUEUED" | "RUNNING" | "CANCELING" | "CANCELED" | "COMPLETED" | "FAILED")
87
+ attr_accessor state_change_reason: ::String
88
+ SENSITIVE: []
89
+ end
90
+
91
+ class CalculationSummary
92
+ attr_accessor calculation_execution_id: ::String
93
+ attr_accessor description: ::String
94
+ attr_accessor status: Types::CalculationStatus
95
+ SENSITIVE: []
96
+ end
97
+
98
+ class CancelCapacityReservationInput
99
+ attr_accessor name: ::String
100
+ SENSITIVE: []
101
+ end
102
+
103
+ class CancelCapacityReservationOutput < Aws::EmptyStructure
104
+ end
105
+
106
+ class CapacityAllocation
107
+ attr_accessor status: ("PENDING" | "SUCCEEDED" | "FAILED")
108
+ attr_accessor status_message: ::String
109
+ attr_accessor request_time: ::Time
110
+ attr_accessor request_completion_time: ::Time
111
+ SENSITIVE: []
112
+ end
113
+
114
+ class CapacityAssignment
115
+ attr_accessor work_group_names: ::Array[::String]
116
+ SENSITIVE: []
117
+ end
118
+
119
+ class CapacityAssignmentConfiguration
120
+ attr_accessor capacity_reservation_name: ::String
121
+ attr_accessor capacity_assignments: ::Array[Types::CapacityAssignment]
122
+ SENSITIVE: []
123
+ end
124
+
125
+ class CapacityReservation
126
+ attr_accessor name: ::String
127
+ attr_accessor status: ("PENDING" | "ACTIVE" | "CANCELLING" | "CANCELLED" | "FAILED" | "UPDATE_PENDING")
128
+ attr_accessor target_dpus: ::Integer
129
+ attr_accessor allocated_dpus: ::Integer
130
+ attr_accessor last_allocation: Types::CapacityAllocation
131
+ attr_accessor last_successful_allocation_time: ::Time
132
+ attr_accessor creation_time: ::Time
133
+ SENSITIVE: []
134
+ end
135
+
136
+ class Column
137
+ attr_accessor name: ::String
138
+ attr_accessor type: ::String
139
+ attr_accessor comment: ::String
140
+ SENSITIVE: []
141
+ end
142
+
143
+ class ColumnInfo
144
+ attr_accessor catalog_name: ::String
145
+ attr_accessor schema_name: ::String
146
+ attr_accessor table_name: ::String
147
+ attr_accessor name: ::String
148
+ attr_accessor label: ::String
149
+ attr_accessor type: ::String
150
+ attr_accessor precision: ::Integer
151
+ attr_accessor scale: ::Integer
152
+ attr_accessor nullable: ("NOT_NULL" | "NULLABLE" | "UNKNOWN")
153
+ attr_accessor case_sensitive: bool
154
+ SENSITIVE: []
155
+ end
156
+
157
+ class CreateCapacityReservationInput
158
+ attr_accessor target_dpus: ::Integer
159
+ attr_accessor name: ::String
160
+ attr_accessor tags: ::Array[Types::Tag]
161
+ SENSITIVE: []
162
+ end
163
+
164
+ class CreateCapacityReservationOutput < Aws::EmptyStructure
165
+ end
166
+
167
+ class CreateDataCatalogInput
168
+ attr_accessor name: ::String
169
+ attr_accessor type: ("LAMBDA" | "GLUE" | "HIVE")
170
+ attr_accessor description: ::String
171
+ attr_accessor parameters: ::Hash[::String, ::String]
172
+ attr_accessor tags: ::Array[Types::Tag]
173
+ SENSITIVE: []
174
+ end
175
+
176
+ class CreateDataCatalogOutput < Aws::EmptyStructure
177
+ end
178
+
179
+ class CreateNamedQueryInput
180
+ attr_accessor name: ::String
181
+ attr_accessor description: ::String
182
+ attr_accessor database: ::String
183
+ attr_accessor query_string: ::String
184
+ attr_accessor client_request_token: ::String
185
+ attr_accessor work_group: ::String
186
+ SENSITIVE: []
187
+ end
188
+
189
+ class CreateNamedQueryOutput
190
+ attr_accessor named_query_id: ::String
191
+ SENSITIVE: []
192
+ end
193
+
194
+ class CreateNotebookInput
195
+ attr_accessor work_group: ::String
196
+ attr_accessor name: ::String
197
+ attr_accessor client_request_token: ::String
198
+ SENSITIVE: []
199
+ end
200
+
201
+ class CreateNotebookOutput
202
+ attr_accessor notebook_id: ::String
203
+ SENSITIVE: []
204
+ end
205
+
206
+ class CreatePreparedStatementInput
207
+ attr_accessor statement_name: ::String
208
+ attr_accessor work_group: ::String
209
+ attr_accessor query_statement: ::String
210
+ attr_accessor description: ::String
211
+ SENSITIVE: []
212
+ end
213
+
214
+ class CreatePreparedStatementOutput < Aws::EmptyStructure
215
+ end
216
+
217
+ class CreatePresignedNotebookUrlRequest
218
+ attr_accessor session_id: ::String
219
+ SENSITIVE: []
220
+ end
221
+
222
+ class CreatePresignedNotebookUrlResponse
223
+ attr_accessor notebook_url: ::String
224
+ attr_accessor auth_token: ::String
225
+ attr_accessor auth_token_expiration_time: ::Integer
226
+ SENSITIVE: []
227
+ end
228
+
229
+ class CreateWorkGroupInput
230
+ attr_accessor name: ::String
231
+ attr_accessor configuration: Types::WorkGroupConfiguration
232
+ attr_accessor description: ::String
233
+ attr_accessor tags: ::Array[Types::Tag]
234
+ SENSITIVE: []
235
+ end
236
+
237
+ class CreateWorkGroupOutput < Aws::EmptyStructure
238
+ end
239
+
240
+ class CustomerContentEncryptionConfiguration
241
+ attr_accessor kms_key: ::String
242
+ SENSITIVE: []
243
+ end
244
+
245
+ class DataCatalog
246
+ attr_accessor name: ::String
247
+ attr_accessor description: ::String
248
+ attr_accessor type: ("LAMBDA" | "GLUE" | "HIVE")
249
+ attr_accessor parameters: ::Hash[::String, ::String]
250
+ SENSITIVE: []
251
+ end
252
+
253
+ class DataCatalogSummary
254
+ attr_accessor catalog_name: ::String
255
+ attr_accessor type: ("LAMBDA" | "GLUE" | "HIVE")
256
+ SENSITIVE: []
257
+ end
258
+
259
+ class Database
260
+ attr_accessor name: ::String
261
+ attr_accessor description: ::String
262
+ attr_accessor parameters: ::Hash[::String, ::String]
263
+ SENSITIVE: []
264
+ end
265
+
266
+ class Datum
267
+ attr_accessor var_char_value: ::String
268
+ SENSITIVE: []
269
+ end
270
+
271
+ class DeleteCapacityReservationInput
272
+ attr_accessor name: ::String
273
+ SENSITIVE: []
274
+ end
275
+
276
+ class DeleteCapacityReservationOutput < Aws::EmptyStructure
277
+ end
278
+
279
+ class DeleteDataCatalogInput
280
+ attr_accessor name: ::String
281
+ SENSITIVE: []
282
+ end
283
+
284
+ class DeleteDataCatalogOutput < Aws::EmptyStructure
285
+ end
286
+
287
+ class DeleteNamedQueryInput
288
+ attr_accessor named_query_id: ::String
289
+ SENSITIVE: []
290
+ end
291
+
292
+ class DeleteNamedQueryOutput < Aws::EmptyStructure
293
+ end
294
+
295
+ class DeleteNotebookInput
296
+ attr_accessor notebook_id: ::String
297
+ SENSITIVE: []
298
+ end
299
+
300
+ class DeleteNotebookOutput < Aws::EmptyStructure
301
+ end
302
+
303
+ class DeletePreparedStatementInput
304
+ attr_accessor statement_name: ::String
305
+ attr_accessor work_group: ::String
306
+ SENSITIVE: []
307
+ end
308
+
309
+ class DeletePreparedStatementOutput < Aws::EmptyStructure
310
+ end
311
+
312
+ class DeleteWorkGroupInput
313
+ attr_accessor work_group: ::String
314
+ attr_accessor recursive_delete_option: bool
315
+ SENSITIVE: []
316
+ end
317
+
318
+ class DeleteWorkGroupOutput < Aws::EmptyStructure
319
+ end
320
+
321
+ class EncryptionConfiguration
322
+ attr_accessor encryption_option: ("SSE_S3" | "SSE_KMS" | "CSE_KMS")
323
+ attr_accessor kms_key: ::String
324
+ SENSITIVE: []
325
+ end
326
+
327
+ class EngineConfiguration
328
+ attr_accessor coordinator_dpu_size: ::Integer
329
+ attr_accessor max_concurrent_dpus: ::Integer
330
+ attr_accessor default_executor_dpu_size: ::Integer
331
+ attr_accessor additional_configs: ::Hash[::String, ::String]
332
+ attr_accessor spark_properties: ::Hash[::String, ::String]
333
+ SENSITIVE: []
334
+ end
335
+
336
+ class EngineVersion
337
+ attr_accessor selected_engine_version: ::String
338
+ attr_accessor effective_engine_version: ::String
339
+ SENSITIVE: []
340
+ end
341
+
342
+ class ExecutorsSummary
343
+ attr_accessor executor_id: ::String
344
+ attr_accessor executor_type: ("COORDINATOR" | "GATEWAY" | "WORKER")
345
+ attr_accessor start_date_time: ::Integer
346
+ attr_accessor termination_date_time: ::Integer
347
+ attr_accessor executor_state: ("CREATING" | "CREATED" | "REGISTERED" | "TERMINATING" | "TERMINATED" | "FAILED")
348
+ attr_accessor executor_size: ::Integer
349
+ SENSITIVE: []
350
+ end
351
+
352
+ class ExportNotebookInput
353
+ attr_accessor notebook_id: ::String
354
+ SENSITIVE: []
355
+ end
356
+
357
+ class ExportNotebookOutput
358
+ attr_accessor notebook_metadata: Types::NotebookMetadata
359
+ attr_accessor payload: ::String
360
+ SENSITIVE: []
361
+ end
362
+
363
+ class FilterDefinition
364
+ attr_accessor name: ::String
365
+ SENSITIVE: []
366
+ end
367
+
368
+ class GetCalculationExecutionCodeRequest
369
+ attr_accessor calculation_execution_id: ::String
370
+ SENSITIVE: []
371
+ end
372
+
373
+ class GetCalculationExecutionCodeResponse
374
+ attr_accessor code_block: ::String
375
+ SENSITIVE: []
376
+ end
377
+
378
+ class GetCalculationExecutionRequest
379
+ attr_accessor calculation_execution_id: ::String
380
+ SENSITIVE: []
381
+ end
382
+
383
+ class GetCalculationExecutionResponse
384
+ attr_accessor calculation_execution_id: ::String
385
+ attr_accessor session_id: ::String
386
+ attr_accessor description: ::String
387
+ attr_accessor working_directory: ::String
388
+ attr_accessor status: Types::CalculationStatus
389
+ attr_accessor statistics: Types::CalculationStatistics
390
+ attr_accessor result: Types::CalculationResult
391
+ SENSITIVE: []
392
+ end
393
+
394
+ class GetCalculationExecutionStatusRequest
395
+ attr_accessor calculation_execution_id: ::String
396
+ SENSITIVE: []
397
+ end
398
+
399
+ class GetCalculationExecutionStatusResponse
400
+ attr_accessor status: Types::CalculationStatus
401
+ attr_accessor statistics: Types::CalculationStatistics
402
+ SENSITIVE: []
403
+ end
404
+
405
+ class GetCapacityAssignmentConfigurationInput
406
+ attr_accessor capacity_reservation_name: ::String
407
+ SENSITIVE: []
408
+ end
409
+
410
+ class GetCapacityAssignmentConfigurationOutput
411
+ attr_accessor capacity_assignment_configuration: Types::CapacityAssignmentConfiguration
412
+ SENSITIVE: []
413
+ end
414
+
415
+ class GetCapacityReservationInput
416
+ attr_accessor name: ::String
417
+ SENSITIVE: []
418
+ end
419
+
420
+ class GetCapacityReservationOutput
421
+ attr_accessor capacity_reservation: Types::CapacityReservation
422
+ SENSITIVE: []
423
+ end
424
+
425
+ class GetDataCatalogInput
426
+ attr_accessor name: ::String
427
+ attr_accessor work_group: ::String
428
+ SENSITIVE: []
429
+ end
430
+
431
+ class GetDataCatalogOutput
432
+ attr_accessor data_catalog: Types::DataCatalog
433
+ SENSITIVE: []
434
+ end
435
+
436
+ class GetDatabaseInput
437
+ attr_accessor catalog_name: ::String
438
+ attr_accessor database_name: ::String
439
+ attr_accessor work_group: ::String
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class GetDatabaseOutput
444
+ attr_accessor database: Types::Database
445
+ SENSITIVE: []
446
+ end
447
+
448
+ class GetNamedQueryInput
449
+ attr_accessor named_query_id: ::String
450
+ SENSITIVE: []
451
+ end
452
+
453
+ class GetNamedQueryOutput
454
+ attr_accessor named_query: Types::NamedQuery
455
+ SENSITIVE: []
456
+ end
457
+
458
+ class GetNotebookMetadataInput
459
+ attr_accessor notebook_id: ::String
460
+ SENSITIVE: []
461
+ end
462
+
463
+ class GetNotebookMetadataOutput
464
+ attr_accessor notebook_metadata: Types::NotebookMetadata
465
+ SENSITIVE: []
466
+ end
467
+
468
+ class GetPreparedStatementInput
469
+ attr_accessor statement_name: ::String
470
+ attr_accessor work_group: ::String
471
+ SENSITIVE: []
472
+ end
473
+
474
+ class GetPreparedStatementOutput
475
+ attr_accessor prepared_statement: Types::PreparedStatement
476
+ SENSITIVE: []
477
+ end
478
+
479
+ class GetQueryExecutionInput
480
+ attr_accessor query_execution_id: ::String
481
+ SENSITIVE: []
482
+ end
483
+
484
+ class GetQueryExecutionOutput
485
+ attr_accessor query_execution: Types::QueryExecution
486
+ SENSITIVE: []
487
+ end
488
+
489
+ class GetQueryResultsInput
490
+ attr_accessor query_execution_id: ::String
491
+ attr_accessor next_token: ::String
492
+ attr_accessor max_results: ::Integer
493
+ SENSITIVE: []
494
+ end
495
+
496
+ class GetQueryResultsOutput
497
+ attr_accessor update_count: ::Integer
498
+ attr_accessor result_set: Types::ResultSet
499
+ attr_accessor next_token: ::String
500
+ SENSITIVE: []
501
+ end
502
+
503
+ class GetQueryRuntimeStatisticsInput
504
+ attr_accessor query_execution_id: ::String
505
+ SENSITIVE: []
506
+ end
507
+
508
+ class GetQueryRuntimeStatisticsOutput
509
+ attr_accessor query_runtime_statistics: Types::QueryRuntimeStatistics
510
+ SENSITIVE: []
511
+ end
512
+
513
+ class GetSessionRequest
514
+ attr_accessor session_id: ::String
515
+ SENSITIVE: []
516
+ end
517
+
518
+ class GetSessionResponse
519
+ attr_accessor session_id: ::String
520
+ attr_accessor description: ::String
521
+ attr_accessor work_group: ::String
522
+ attr_accessor engine_version: ::String
523
+ attr_accessor engine_configuration: Types::EngineConfiguration
524
+ attr_accessor notebook_version: ::String
525
+ attr_accessor session_configuration: Types::SessionConfiguration
526
+ attr_accessor status: Types::SessionStatus
527
+ attr_accessor statistics: Types::SessionStatistics
528
+ SENSITIVE: []
529
+ end
530
+
531
+ class GetSessionStatusRequest
532
+ attr_accessor session_id: ::String
533
+ SENSITIVE: []
534
+ end
535
+
536
+ class GetSessionStatusResponse
537
+ attr_accessor session_id: ::String
538
+ attr_accessor status: Types::SessionStatus
539
+ SENSITIVE: []
540
+ end
541
+
542
+ class GetTableMetadataInput
543
+ attr_accessor catalog_name: ::String
544
+ attr_accessor database_name: ::String
545
+ attr_accessor table_name: ::String
546
+ attr_accessor work_group: ::String
547
+ SENSITIVE: []
548
+ end
549
+
550
+ class GetTableMetadataOutput
551
+ attr_accessor table_metadata: Types::TableMetadata
552
+ SENSITIVE: []
553
+ end
554
+
555
+ class GetWorkGroupInput
556
+ attr_accessor work_group: ::String
557
+ SENSITIVE: []
558
+ end
559
+
560
+ class GetWorkGroupOutput
561
+ attr_accessor work_group: Types::WorkGroup
562
+ SENSITIVE: []
563
+ end
564
+
565
+ class IdentityCenterConfiguration
566
+ attr_accessor enable_identity_center: bool
567
+ attr_accessor identity_center_instance_arn: ::String
568
+ SENSITIVE: []
569
+ end
570
+
571
+ class ImportNotebookInput
572
+ attr_accessor work_group: ::String
573
+ attr_accessor name: ::String
574
+ attr_accessor payload: ::String
575
+ attr_accessor type: ("IPYNB")
576
+ attr_accessor notebook_s3_location_uri: ::String
577
+ attr_accessor client_request_token: ::String
578
+ SENSITIVE: []
579
+ end
580
+
581
+ class ImportNotebookOutput
582
+ attr_accessor notebook_id: ::String
583
+ SENSITIVE: []
584
+ end
585
+
586
+ class InternalServerException
587
+ attr_accessor message: ::String
588
+ SENSITIVE: []
589
+ end
590
+
591
+ class InvalidRequestException
592
+ attr_accessor athena_error_code: ::String
593
+ attr_accessor message: ::String
594
+ SENSITIVE: []
595
+ end
596
+
597
+ class ListApplicationDPUSizesInput
598
+ attr_accessor max_results: ::Integer
599
+ attr_accessor next_token: ::String
600
+ SENSITIVE: []
601
+ end
602
+
603
+ class ListApplicationDPUSizesOutput
604
+ attr_accessor application_dpu_sizes: ::Array[Types::ApplicationDPUSizes]
605
+ attr_accessor next_token: ::String
606
+ SENSITIVE: []
607
+ end
608
+
609
+ class ListCalculationExecutionsRequest
610
+ attr_accessor session_id: ::String
611
+ attr_accessor state_filter: ("CREATING" | "CREATED" | "QUEUED" | "RUNNING" | "CANCELING" | "CANCELED" | "COMPLETED" | "FAILED")
612
+ attr_accessor max_results: ::Integer
613
+ attr_accessor next_token: ::String
614
+ SENSITIVE: []
615
+ end
616
+
617
+ class ListCalculationExecutionsResponse
618
+ attr_accessor next_token: ::String
619
+ attr_accessor calculations: ::Array[Types::CalculationSummary]
620
+ SENSITIVE: []
621
+ end
622
+
623
+ class ListCapacityReservationsInput
624
+ attr_accessor next_token: ::String
625
+ attr_accessor max_results: ::Integer
626
+ SENSITIVE: []
627
+ end
628
+
629
+ class ListCapacityReservationsOutput
630
+ attr_accessor next_token: ::String
631
+ attr_accessor capacity_reservations: ::Array[Types::CapacityReservation]
632
+ SENSITIVE: []
633
+ end
634
+
635
+ class ListDataCatalogsInput
636
+ attr_accessor next_token: ::String
637
+ attr_accessor max_results: ::Integer
638
+ attr_accessor work_group: ::String
639
+ SENSITIVE: []
640
+ end
641
+
642
+ class ListDataCatalogsOutput
643
+ attr_accessor data_catalogs_summary: ::Array[Types::DataCatalogSummary]
644
+ attr_accessor next_token: ::String
645
+ SENSITIVE: []
646
+ end
647
+
648
+ class ListDatabasesInput
649
+ attr_accessor catalog_name: ::String
650
+ attr_accessor next_token: ::String
651
+ attr_accessor max_results: ::Integer
652
+ attr_accessor work_group: ::String
653
+ SENSITIVE: []
654
+ end
655
+
656
+ class ListDatabasesOutput
657
+ attr_accessor database_list: ::Array[Types::Database]
658
+ attr_accessor next_token: ::String
659
+ SENSITIVE: []
660
+ end
661
+
662
+ class ListEngineVersionsInput
663
+ attr_accessor next_token: ::String
664
+ attr_accessor max_results: ::Integer
665
+ SENSITIVE: []
666
+ end
667
+
668
+ class ListEngineVersionsOutput
669
+ attr_accessor engine_versions: ::Array[Types::EngineVersion]
670
+ attr_accessor next_token: ::String
671
+ SENSITIVE: []
672
+ end
673
+
674
+ class ListExecutorsRequest
675
+ attr_accessor session_id: ::String
676
+ attr_accessor executor_state_filter: ("CREATING" | "CREATED" | "REGISTERED" | "TERMINATING" | "TERMINATED" | "FAILED")
677
+ attr_accessor max_results: ::Integer
678
+ attr_accessor next_token: ::String
679
+ SENSITIVE: []
680
+ end
681
+
682
+ class ListExecutorsResponse
683
+ attr_accessor session_id: ::String
684
+ attr_accessor next_token: ::String
685
+ attr_accessor executors_summary: ::Array[Types::ExecutorsSummary]
686
+ SENSITIVE: []
687
+ end
688
+
689
+ class ListNamedQueriesInput
690
+ attr_accessor next_token: ::String
691
+ attr_accessor max_results: ::Integer
692
+ attr_accessor work_group: ::String
693
+ SENSITIVE: []
694
+ end
695
+
696
+ class ListNamedQueriesOutput
697
+ attr_accessor named_query_ids: ::Array[::String]
698
+ attr_accessor next_token: ::String
699
+ SENSITIVE: []
700
+ end
701
+
702
+ class ListNotebookMetadataInput
703
+ attr_accessor filters: Types::FilterDefinition
704
+ attr_accessor next_token: ::String
705
+ attr_accessor max_results: ::Integer
706
+ attr_accessor work_group: ::String
707
+ SENSITIVE: []
708
+ end
709
+
710
+ class ListNotebookMetadataOutput
711
+ attr_accessor next_token: ::String
712
+ attr_accessor notebook_metadata_list: ::Array[Types::NotebookMetadata]
713
+ SENSITIVE: []
714
+ end
715
+
716
+ class ListNotebookSessionsRequest
717
+ attr_accessor notebook_id: ::String
718
+ attr_accessor max_results: ::Integer
719
+ attr_accessor next_token: ::String
720
+ SENSITIVE: []
721
+ end
722
+
723
+ class ListNotebookSessionsResponse
724
+ attr_accessor notebook_sessions_list: ::Array[Types::NotebookSessionSummary]
725
+ attr_accessor next_token: ::String
726
+ SENSITIVE: []
727
+ end
728
+
729
+ class ListPreparedStatementsInput
730
+ attr_accessor work_group: ::String
731
+ attr_accessor next_token: ::String
732
+ attr_accessor max_results: ::Integer
733
+ SENSITIVE: []
734
+ end
735
+
736
+ class ListPreparedStatementsOutput
737
+ attr_accessor prepared_statements: ::Array[Types::PreparedStatementSummary]
738
+ attr_accessor next_token: ::String
739
+ SENSITIVE: []
740
+ end
741
+
742
+ class ListQueryExecutionsInput
743
+ attr_accessor next_token: ::String
744
+ attr_accessor max_results: ::Integer
745
+ attr_accessor work_group: ::String
746
+ SENSITIVE: []
747
+ end
748
+
749
+ class ListQueryExecutionsOutput
750
+ attr_accessor query_execution_ids: ::Array[::String]
751
+ attr_accessor next_token: ::String
752
+ SENSITIVE: []
753
+ end
754
+
755
+ class ListSessionsRequest
756
+ attr_accessor work_group: ::String
757
+ attr_accessor state_filter: ("CREATING" | "CREATED" | "IDLE" | "BUSY" | "TERMINATING" | "TERMINATED" | "DEGRADED" | "FAILED")
758
+ attr_accessor max_results: ::Integer
759
+ attr_accessor next_token: ::String
760
+ SENSITIVE: []
761
+ end
762
+
763
+ class ListSessionsResponse
764
+ attr_accessor next_token: ::String
765
+ attr_accessor sessions: ::Array[Types::SessionSummary]
766
+ SENSITIVE: []
767
+ end
768
+
769
+ class ListTableMetadataInput
770
+ attr_accessor catalog_name: ::String
771
+ attr_accessor database_name: ::String
772
+ attr_accessor expression: ::String
773
+ attr_accessor next_token: ::String
774
+ attr_accessor max_results: ::Integer
775
+ attr_accessor work_group: ::String
776
+ SENSITIVE: []
777
+ end
778
+
779
+ class ListTableMetadataOutput
780
+ attr_accessor table_metadata_list: ::Array[Types::TableMetadata]
781
+ attr_accessor next_token: ::String
782
+ SENSITIVE: []
783
+ end
784
+
785
+ class ListTagsForResourceInput
786
+ attr_accessor resource_arn: ::String
787
+ attr_accessor next_token: ::String
788
+ attr_accessor max_results: ::Integer
789
+ SENSITIVE: []
790
+ end
791
+
792
+ class ListTagsForResourceOutput
793
+ attr_accessor tags: ::Array[Types::Tag]
794
+ attr_accessor next_token: ::String
795
+ SENSITIVE: []
796
+ end
797
+
798
+ class ListWorkGroupsInput
799
+ attr_accessor next_token: ::String
800
+ attr_accessor max_results: ::Integer
801
+ SENSITIVE: []
802
+ end
803
+
804
+ class ListWorkGroupsOutput
805
+ attr_accessor work_groups: ::Array[Types::WorkGroupSummary]
806
+ attr_accessor next_token: ::String
807
+ SENSITIVE: []
808
+ end
809
+
810
+ class MetadataException
811
+ attr_accessor message: ::String
812
+ SENSITIVE: []
813
+ end
814
+
815
+ class NamedQuery
816
+ attr_accessor name: ::String
817
+ attr_accessor description: ::String
818
+ attr_accessor database: ::String
819
+ attr_accessor query_string: ::String
820
+ attr_accessor named_query_id: ::String
821
+ attr_accessor work_group: ::String
822
+ SENSITIVE: []
823
+ end
824
+
825
+ class NotebookMetadata
826
+ attr_accessor notebook_id: ::String
827
+ attr_accessor name: ::String
828
+ attr_accessor work_group: ::String
829
+ attr_accessor creation_time: ::Time
830
+ attr_accessor type: ("IPYNB")
831
+ attr_accessor last_modified_time: ::Time
832
+ SENSITIVE: []
833
+ end
834
+
835
+ class NotebookSessionSummary
836
+ attr_accessor session_id: ::String
837
+ attr_accessor creation_time: ::Time
838
+ SENSITIVE: []
839
+ end
840
+
841
+ class PreparedStatement
842
+ attr_accessor statement_name: ::String
843
+ attr_accessor query_statement: ::String
844
+ attr_accessor work_group_name: ::String
845
+ attr_accessor description: ::String
846
+ attr_accessor last_modified_time: ::Time
847
+ SENSITIVE: []
848
+ end
849
+
850
+ class PreparedStatementSummary
851
+ attr_accessor statement_name: ::String
852
+ attr_accessor last_modified_time: ::Time
853
+ SENSITIVE: []
854
+ end
855
+
856
+ class PutCapacityAssignmentConfigurationInput
857
+ attr_accessor capacity_reservation_name: ::String
858
+ attr_accessor capacity_assignments: ::Array[Types::CapacityAssignment]
859
+ SENSITIVE: []
860
+ end
861
+
862
+ class PutCapacityAssignmentConfigurationOutput < Aws::EmptyStructure
863
+ end
864
+
865
+ class QueryExecution
866
+ attr_accessor query_execution_id: ::String
867
+ attr_accessor query: ::String
868
+ attr_accessor statement_type: ("DDL" | "DML" | "UTILITY")
869
+ attr_accessor result_configuration: Types::ResultConfiguration
870
+ attr_accessor result_reuse_configuration: Types::ResultReuseConfiguration
871
+ attr_accessor query_execution_context: Types::QueryExecutionContext
872
+ attr_accessor status: Types::QueryExecutionStatus
873
+ attr_accessor statistics: Types::QueryExecutionStatistics
874
+ attr_accessor work_group: ::String
875
+ attr_accessor engine_version: Types::EngineVersion
876
+ attr_accessor execution_parameters: ::Array[::String]
877
+ attr_accessor substatement_type: ::String
878
+ attr_accessor query_results_s3_access_grants_configuration: Types::QueryResultsS3AccessGrantsConfiguration
879
+ SENSITIVE: []
880
+ end
881
+
882
+ class QueryExecutionContext
883
+ attr_accessor database: ::String
884
+ attr_accessor catalog: ::String
885
+ SENSITIVE: []
886
+ end
887
+
888
+ class QueryExecutionStatistics
889
+ attr_accessor engine_execution_time_in_millis: ::Integer
890
+ attr_accessor data_scanned_in_bytes: ::Integer
891
+ attr_accessor data_manifest_location: ::String
892
+ attr_accessor total_execution_time_in_millis: ::Integer
893
+ attr_accessor query_queue_time_in_millis: ::Integer
894
+ attr_accessor service_pre_processing_time_in_millis: ::Integer
895
+ attr_accessor query_planning_time_in_millis: ::Integer
896
+ attr_accessor service_processing_time_in_millis: ::Integer
897
+ attr_accessor result_reuse_information: Types::ResultReuseInformation
898
+ SENSITIVE: []
899
+ end
900
+
901
+ class QueryExecutionStatus
902
+ attr_accessor state: ("QUEUED" | "RUNNING" | "SUCCEEDED" | "FAILED" | "CANCELLED")
903
+ attr_accessor state_change_reason: ::String
904
+ attr_accessor submission_date_time: ::Time
905
+ attr_accessor completion_date_time: ::Time
906
+ attr_accessor athena_error: Types::AthenaError
907
+ SENSITIVE: []
908
+ end
909
+
910
+ class QueryResultsS3AccessGrantsConfiguration
911
+ attr_accessor enable_s3_access_grants: bool
912
+ attr_accessor create_user_level_prefix: bool
913
+ attr_accessor authentication_type: ("DIRECTORY_IDENTITY")
914
+ SENSITIVE: []
915
+ end
916
+
917
+ class QueryRuntimeStatistics
918
+ attr_accessor timeline: Types::QueryRuntimeStatisticsTimeline
919
+ attr_accessor rows: Types::QueryRuntimeStatisticsRows
920
+ attr_accessor output_stage: Types::QueryStage
921
+ SENSITIVE: []
922
+ end
923
+
924
+ class QueryRuntimeStatisticsRows
925
+ attr_accessor input_rows: ::Integer
926
+ attr_accessor input_bytes: ::Integer
927
+ attr_accessor output_bytes: ::Integer
928
+ attr_accessor output_rows: ::Integer
929
+ SENSITIVE: []
930
+ end
931
+
932
+ class QueryRuntimeStatisticsTimeline
933
+ attr_accessor query_queue_time_in_millis: ::Integer
934
+ attr_accessor service_pre_processing_time_in_millis: ::Integer
935
+ attr_accessor query_planning_time_in_millis: ::Integer
936
+ attr_accessor engine_execution_time_in_millis: ::Integer
937
+ attr_accessor service_processing_time_in_millis: ::Integer
938
+ attr_accessor total_execution_time_in_millis: ::Integer
939
+ SENSITIVE: []
940
+ end
941
+
942
+ class QueryStage
943
+ attr_accessor stage_id: ::Integer
944
+ attr_accessor state: ::String
945
+ attr_accessor output_bytes: ::Integer
946
+ attr_accessor output_rows: ::Integer
947
+ attr_accessor input_bytes: ::Integer
948
+ attr_accessor input_rows: ::Integer
949
+ attr_accessor execution_time: ::Integer
950
+ attr_accessor query_stage_plan: Types::QueryStagePlanNode
951
+ attr_accessor sub_stages: ::Array[Types::QueryStage]
952
+ SENSITIVE: []
953
+ end
954
+
955
+ class QueryStagePlanNode
956
+ attr_accessor name: ::String
957
+ attr_accessor identifier: ::String
958
+ attr_accessor children: ::Array[Types::QueryStagePlanNode]
959
+ attr_accessor remote_sources: ::Array[::String]
960
+ SENSITIVE: []
961
+ end
962
+
963
+ class ResourceNotFoundException
964
+ attr_accessor message: ::String
965
+ attr_accessor resource_name: ::String
966
+ SENSITIVE: []
967
+ end
968
+
969
+ class ResultConfiguration
970
+ attr_accessor output_location: ::String
971
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
972
+ attr_accessor expected_bucket_owner: ::String
973
+ attr_accessor acl_configuration: Types::AclConfiguration
974
+ SENSITIVE: []
975
+ end
976
+
977
+ class ResultConfigurationUpdates
978
+ attr_accessor output_location: ::String
979
+ attr_accessor remove_output_location: bool
980
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
981
+ attr_accessor remove_encryption_configuration: bool
982
+ attr_accessor expected_bucket_owner: ::String
983
+ attr_accessor remove_expected_bucket_owner: bool
984
+ attr_accessor acl_configuration: Types::AclConfiguration
985
+ attr_accessor remove_acl_configuration: bool
986
+ SENSITIVE: []
987
+ end
988
+
989
+ class ResultReuseByAgeConfiguration
990
+ attr_accessor enabled: bool
991
+ attr_accessor max_age_in_minutes: ::Integer
992
+ SENSITIVE: []
993
+ end
994
+
995
+ class ResultReuseConfiguration
996
+ attr_accessor result_reuse_by_age_configuration: Types::ResultReuseByAgeConfiguration
997
+ SENSITIVE: []
998
+ end
999
+
1000
+ class ResultReuseInformation
1001
+ attr_accessor reused_previous_result: bool
1002
+ SENSITIVE: []
1003
+ end
1004
+
1005
+ class ResultSet
1006
+ attr_accessor rows: ::Array[Types::Row]
1007
+ attr_accessor result_set_metadata: Types::ResultSetMetadata
1008
+ SENSITIVE: []
1009
+ end
1010
+
1011
+ class ResultSetMetadata
1012
+ attr_accessor column_info: ::Array[Types::ColumnInfo]
1013
+ SENSITIVE: []
1014
+ end
1015
+
1016
+ class Row
1017
+ attr_accessor data: ::Array[Types::Datum]
1018
+ SENSITIVE: []
1019
+ end
1020
+
1021
+ class SessionAlreadyExistsException
1022
+ attr_accessor message: ::String
1023
+ SENSITIVE: []
1024
+ end
1025
+
1026
+ class SessionConfiguration
1027
+ attr_accessor execution_role: ::String
1028
+ attr_accessor working_directory: ::String
1029
+ attr_accessor idle_timeout_seconds: ::Integer
1030
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
1031
+ SENSITIVE: []
1032
+ end
1033
+
1034
+ class SessionStatistics
1035
+ attr_accessor dpu_execution_in_millis: ::Integer
1036
+ SENSITIVE: []
1037
+ end
1038
+
1039
+ class SessionStatus
1040
+ attr_accessor start_date_time: ::Time
1041
+ attr_accessor last_modified_date_time: ::Time
1042
+ attr_accessor end_date_time: ::Time
1043
+ attr_accessor idle_since_date_time: ::Time
1044
+ attr_accessor state: ("CREATING" | "CREATED" | "IDLE" | "BUSY" | "TERMINATING" | "TERMINATED" | "DEGRADED" | "FAILED")
1045
+ attr_accessor state_change_reason: ::String
1046
+ SENSITIVE: []
1047
+ end
1048
+
1049
+ class SessionSummary
1050
+ attr_accessor session_id: ::String
1051
+ attr_accessor description: ::String
1052
+ attr_accessor engine_version: Types::EngineVersion
1053
+ attr_accessor notebook_version: ::String
1054
+ attr_accessor status: Types::SessionStatus
1055
+ SENSITIVE: []
1056
+ end
1057
+
1058
+ class StartCalculationExecutionRequest
1059
+ attr_accessor session_id: ::String
1060
+ attr_accessor description: ::String
1061
+ attr_accessor calculation_configuration: Types::CalculationConfiguration
1062
+ attr_accessor code_block: ::String
1063
+ attr_accessor client_request_token: ::String
1064
+ SENSITIVE: []
1065
+ end
1066
+
1067
+ class StartCalculationExecutionResponse
1068
+ attr_accessor calculation_execution_id: ::String
1069
+ attr_accessor state: ("CREATING" | "CREATED" | "QUEUED" | "RUNNING" | "CANCELING" | "CANCELED" | "COMPLETED" | "FAILED")
1070
+ SENSITIVE: []
1071
+ end
1072
+
1073
+ class StartQueryExecutionInput
1074
+ attr_accessor query_string: ::String
1075
+ attr_accessor client_request_token: ::String
1076
+ attr_accessor query_execution_context: Types::QueryExecutionContext
1077
+ attr_accessor result_configuration: Types::ResultConfiguration
1078
+ attr_accessor work_group: ::String
1079
+ attr_accessor execution_parameters: ::Array[::String]
1080
+ attr_accessor result_reuse_configuration: Types::ResultReuseConfiguration
1081
+ SENSITIVE: []
1082
+ end
1083
+
1084
+ class StartQueryExecutionOutput
1085
+ attr_accessor query_execution_id: ::String
1086
+ SENSITIVE: []
1087
+ end
1088
+
1089
+ class StartSessionRequest
1090
+ attr_accessor description: ::String
1091
+ attr_accessor work_group: ::String
1092
+ attr_accessor engine_configuration: Types::EngineConfiguration
1093
+ attr_accessor notebook_version: ::String
1094
+ attr_accessor session_idle_timeout_in_minutes: ::Integer
1095
+ attr_accessor client_request_token: ::String
1096
+ SENSITIVE: []
1097
+ end
1098
+
1099
+ class StartSessionResponse
1100
+ attr_accessor session_id: ::String
1101
+ attr_accessor state: ("CREATING" | "CREATED" | "IDLE" | "BUSY" | "TERMINATING" | "TERMINATED" | "DEGRADED" | "FAILED")
1102
+ SENSITIVE: []
1103
+ end
1104
+
1105
+ class StopCalculationExecutionRequest
1106
+ attr_accessor calculation_execution_id: ::String
1107
+ SENSITIVE: []
1108
+ end
1109
+
1110
+ class StopCalculationExecutionResponse
1111
+ attr_accessor state: ("CREATING" | "CREATED" | "QUEUED" | "RUNNING" | "CANCELING" | "CANCELED" | "COMPLETED" | "FAILED")
1112
+ SENSITIVE: []
1113
+ end
1114
+
1115
+ class StopQueryExecutionInput
1116
+ attr_accessor query_execution_id: ::String
1117
+ SENSITIVE: []
1118
+ end
1119
+
1120
+ class StopQueryExecutionOutput < Aws::EmptyStructure
1121
+ end
1122
+
1123
+ class TableMetadata
1124
+ attr_accessor name: ::String
1125
+ attr_accessor create_time: ::Time
1126
+ attr_accessor last_access_time: ::Time
1127
+ attr_accessor table_type: ::String
1128
+ attr_accessor columns: ::Array[Types::Column]
1129
+ attr_accessor partition_keys: ::Array[Types::Column]
1130
+ attr_accessor parameters: ::Hash[::String, ::String]
1131
+ SENSITIVE: []
1132
+ end
1133
+
1134
+ class Tag
1135
+ attr_accessor key: ::String
1136
+ attr_accessor value: ::String
1137
+ SENSITIVE: []
1138
+ end
1139
+
1140
+ class TagResourceInput
1141
+ attr_accessor resource_arn: ::String
1142
+ attr_accessor tags: ::Array[Types::Tag]
1143
+ SENSITIVE: []
1144
+ end
1145
+
1146
+ class TagResourceOutput < Aws::EmptyStructure
1147
+ end
1148
+
1149
+ class TerminateSessionRequest
1150
+ attr_accessor session_id: ::String
1151
+ SENSITIVE: []
1152
+ end
1153
+
1154
+ class TerminateSessionResponse
1155
+ attr_accessor state: ("CREATING" | "CREATED" | "IDLE" | "BUSY" | "TERMINATING" | "TERMINATED" | "DEGRADED" | "FAILED")
1156
+ SENSITIVE: []
1157
+ end
1158
+
1159
+ class TooManyRequestsException
1160
+ attr_accessor message: ::String
1161
+ attr_accessor reason: ("CONCURRENT_QUERY_LIMIT_EXCEEDED")
1162
+ SENSITIVE: []
1163
+ end
1164
+
1165
+ class UnprocessedNamedQueryId
1166
+ attr_accessor named_query_id: ::String
1167
+ attr_accessor error_code: ::String
1168
+ attr_accessor error_message: ::String
1169
+ SENSITIVE: []
1170
+ end
1171
+
1172
+ class UnprocessedPreparedStatementName
1173
+ attr_accessor statement_name: ::String
1174
+ attr_accessor error_code: ::String
1175
+ attr_accessor error_message: ::String
1176
+ SENSITIVE: []
1177
+ end
1178
+
1179
+ class UnprocessedQueryExecutionId
1180
+ attr_accessor query_execution_id: ::String
1181
+ attr_accessor error_code: ::String
1182
+ attr_accessor error_message: ::String
1183
+ SENSITIVE: []
1184
+ end
1185
+
1186
+ class UntagResourceInput
1187
+ attr_accessor resource_arn: ::String
1188
+ attr_accessor tag_keys: ::Array[::String]
1189
+ SENSITIVE: []
1190
+ end
1191
+
1192
+ class UntagResourceOutput < Aws::EmptyStructure
1193
+ end
1194
+
1195
+ class UpdateCapacityReservationInput
1196
+ attr_accessor target_dpus: ::Integer
1197
+ attr_accessor name: ::String
1198
+ SENSITIVE: []
1199
+ end
1200
+
1201
+ class UpdateCapacityReservationOutput < Aws::EmptyStructure
1202
+ end
1203
+
1204
+ class UpdateDataCatalogInput
1205
+ attr_accessor name: ::String
1206
+ attr_accessor type: ("LAMBDA" | "GLUE" | "HIVE")
1207
+ attr_accessor description: ::String
1208
+ attr_accessor parameters: ::Hash[::String, ::String]
1209
+ SENSITIVE: []
1210
+ end
1211
+
1212
+ class UpdateDataCatalogOutput < Aws::EmptyStructure
1213
+ end
1214
+
1215
+ class UpdateNamedQueryInput
1216
+ attr_accessor named_query_id: ::String
1217
+ attr_accessor name: ::String
1218
+ attr_accessor description: ::String
1219
+ attr_accessor query_string: ::String
1220
+ SENSITIVE: []
1221
+ end
1222
+
1223
+ class UpdateNamedQueryOutput < Aws::EmptyStructure
1224
+ end
1225
+
1226
+ class UpdateNotebookInput
1227
+ attr_accessor notebook_id: ::String
1228
+ attr_accessor payload: ::String
1229
+ attr_accessor type: ("IPYNB")
1230
+ attr_accessor session_id: ::String
1231
+ attr_accessor client_request_token: ::String
1232
+ SENSITIVE: []
1233
+ end
1234
+
1235
+ class UpdateNotebookMetadataInput
1236
+ attr_accessor notebook_id: ::String
1237
+ attr_accessor client_request_token: ::String
1238
+ attr_accessor name: ::String
1239
+ SENSITIVE: []
1240
+ end
1241
+
1242
+ class UpdateNotebookMetadataOutput < Aws::EmptyStructure
1243
+ end
1244
+
1245
+ class UpdateNotebookOutput < Aws::EmptyStructure
1246
+ end
1247
+
1248
+ class UpdatePreparedStatementInput
1249
+ attr_accessor statement_name: ::String
1250
+ attr_accessor work_group: ::String
1251
+ attr_accessor query_statement: ::String
1252
+ attr_accessor description: ::String
1253
+ SENSITIVE: []
1254
+ end
1255
+
1256
+ class UpdatePreparedStatementOutput < Aws::EmptyStructure
1257
+ end
1258
+
1259
+ class UpdateWorkGroupInput
1260
+ attr_accessor work_group: ::String
1261
+ attr_accessor description: ::String
1262
+ attr_accessor configuration_updates: Types::WorkGroupConfigurationUpdates
1263
+ attr_accessor state: ("ENABLED" | "DISABLED")
1264
+ SENSITIVE: []
1265
+ end
1266
+
1267
+ class UpdateWorkGroupOutput < Aws::EmptyStructure
1268
+ end
1269
+
1270
+ class WorkGroup
1271
+ attr_accessor name: ::String
1272
+ attr_accessor state: ("ENABLED" | "DISABLED")
1273
+ attr_accessor configuration: Types::WorkGroupConfiguration
1274
+ attr_accessor description: ::String
1275
+ attr_accessor creation_time: ::Time
1276
+ attr_accessor identity_center_application_arn: ::String
1277
+ SENSITIVE: []
1278
+ end
1279
+
1280
+ class WorkGroupConfiguration
1281
+ attr_accessor result_configuration: Types::ResultConfiguration
1282
+ attr_accessor enforce_work_group_configuration: bool
1283
+ attr_accessor publish_cloud_watch_metrics_enabled: bool
1284
+ attr_accessor bytes_scanned_cutoff_per_query: ::Integer
1285
+ attr_accessor requester_pays_enabled: bool
1286
+ attr_accessor engine_version: Types::EngineVersion
1287
+ attr_accessor additional_configuration: ::String
1288
+ attr_accessor execution_role: ::String
1289
+ attr_accessor customer_content_encryption_configuration: Types::CustomerContentEncryptionConfiguration
1290
+ attr_accessor enable_minimum_encryption_configuration: bool
1291
+ attr_accessor identity_center_configuration: Types::IdentityCenterConfiguration
1292
+ attr_accessor query_results_s3_access_grants_configuration: Types::QueryResultsS3AccessGrantsConfiguration
1293
+ SENSITIVE: []
1294
+ end
1295
+
1296
+ class WorkGroupConfigurationUpdates
1297
+ attr_accessor enforce_work_group_configuration: bool
1298
+ attr_accessor result_configuration_updates: Types::ResultConfigurationUpdates
1299
+ attr_accessor publish_cloud_watch_metrics_enabled: bool
1300
+ attr_accessor bytes_scanned_cutoff_per_query: ::Integer
1301
+ attr_accessor remove_bytes_scanned_cutoff_per_query: bool
1302
+ attr_accessor requester_pays_enabled: bool
1303
+ attr_accessor engine_version: Types::EngineVersion
1304
+ attr_accessor remove_customer_content_encryption_configuration: bool
1305
+ attr_accessor additional_configuration: ::String
1306
+ attr_accessor execution_role: ::String
1307
+ attr_accessor customer_content_encryption_configuration: Types::CustomerContentEncryptionConfiguration
1308
+ attr_accessor enable_minimum_encryption_configuration: bool
1309
+ attr_accessor query_results_s3_access_grants_configuration: Types::QueryResultsS3AccessGrantsConfiguration
1310
+ SENSITIVE: []
1311
+ end
1312
+
1313
+ class WorkGroupSummary
1314
+ attr_accessor name: ::String
1315
+ attr_accessor state: ("ENABLED" | "DISABLED")
1316
+ attr_accessor description: ::String
1317
+ attr_accessor creation_time: ::Time
1318
+ attr_accessor engine_version: Types::EngineVersion
1319
+ attr_accessor identity_center_application_arn: ::String
1320
+ SENSITIVE: []
1321
+ end
1322
+ end
1323
+ end