aws-sdk-gluedatabrew 1.67.0 → 1.69.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5240079bd82fad41e9ccb2817067f3d5f9c7be462df3a6bbd49d781dabc2bc7e
4
- data.tar.gz: 55efbc5dd0cdf35b36cb3731c2c52a8bb96aa33a1933639aa800f00ecaa0265a
3
+ metadata.gz: 46622c71326bfbdf1a40aea63c8e1e189e6e5a8c670c12bfc48c73c4b552c90c
4
+ data.tar.gz: 486260ceff1c0a17205e0b32b438fa25b551bea84057e1075a272889710a70b8
5
5
  SHA512:
6
- metadata.gz: 7f6a814cc14b82c2994d2e6705a1c9e8a042a3649ed2512de09bfa5fb8e5a4c41076087251f3ff40f5d71c189109ff372c8bb146283e4d7396492a18a507e772
7
- data.tar.gz: 9763928fcb4555bc37eefe3ee169009e0d9ac3938367ab76af0e457b715d4d1b2f22234439ff2d438597cea619270a7e3fde4d7a8c50d30f94c65807abb36a45
6
+ metadata.gz: 8607f6542986ee4ecbbde5a4def2a0e3244bae178e8a32823c30fa72d1a424d334cecef7274a4852ca740ba482ae431a53365d06e228ba47cce41ef0e3feac9d
7
+ data.tar.gz: 03a29b497c83e4d51564fe0baca6b86fce5c81752c2b80d0b33415f9855a2ef8f783d2e0e2fe8e1a582b102c60abd2e94cfd4ca2d6366bfdad00c03250afa7e4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.68.0 (2026-05-13)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.67.0 (2026-03-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.69.0
@@ -3447,7 +3447,7 @@ module Aws::GlueDataBrew
3447
3447
  tracer: tracer
3448
3448
  )
3449
3449
  context[:gem_name] = 'aws-sdk-gluedatabrew'
3450
- context[:gem_version] = '1.67.0'
3450
+ context[:gem_version] = '1.69.0'
3451
3451
  Seahorse::Client::Request.new(handlers, context)
3452
3452
  end
3453
3453
 
@@ -54,7 +54,7 @@ module Aws::GlueDataBrew
54
54
  autoload :EndpointProvider, 'aws-sdk-gluedatabrew/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-gluedatabrew/endpoints'
56
56
 
57
- GEM_VERSION = '1.67.0'
57
+ GEM_VERSION = '1.69.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -98,75 +98,9 @@ module Aws
98
98
  def create_dataset: (
99
99
  name: ::String,
100
100
  ?format: ("CSV" | "JSON" | "PARQUET" | "EXCEL" | "ORC"),
101
- ?format_options: {
102
- json: {
103
- multi_line: bool?
104
- }?,
105
- excel: {
106
- sheet_names: Array[::String]?,
107
- sheet_indexes: Array[::Integer]?,
108
- header_row: bool?
109
- }?,
110
- csv: {
111
- delimiter: ::String?,
112
- header_row: bool?
113
- }?
114
- },
115
- input: {
116
- s3_input_definition: {
117
- bucket: ::String,
118
- key: ::String?,
119
- bucket_owner: ::String?
120
- }?,
121
- data_catalog_input_definition: {
122
- catalog_id: ::String?,
123
- database_name: ::String,
124
- table_name: ::String,
125
- temp_directory: {
126
- bucket: ::String,
127
- key: ::String?,
128
- bucket_owner: ::String?
129
- }?
130
- }?,
131
- database_input_definition: {
132
- glue_connection_name: ::String,
133
- database_table_name: ::String?,
134
- temp_directory: {
135
- bucket: ::String,
136
- key: ::String?,
137
- bucket_owner: ::String?
138
- }?,
139
- query_string: ::String?
140
- }?,
141
- metadata: {
142
- source_arn: ::String?
143
- }?
144
- },
145
- ?path_options: {
146
- last_modified_date_condition: {
147
- expression: ::String,
148
- values_map: Hash[::String, ::String]
149
- }?,
150
- files_limit: {
151
- max_files: ::Integer,
152
- ordered_by: ("LAST_MODIFIED_DATE")?,
153
- order: ("DESCENDING" | "ASCENDING")?
154
- }?,
155
- parameters: Hash[::String, {
156
- name: ::String,
157
- type: ("Datetime" | "Number" | "String"),
158
- datetime_options: {
159
- format: ::String,
160
- timezone_offset: ::String?,
161
- locale_code: ::String?
162
- }?,
163
- create_column: bool?,
164
- filter: {
165
- expression: ::String,
166
- values_map: Hash[::String, ::String]
167
- }?
168
- }]?
169
- },
101
+ ?format_options: Params::format_options,
102
+ input: Params::input,
103
+ ?path_options: Params::path_options,
170
104
  ?tags: Hash[::String, ::String]
171
105
  ) -> _CreateDatasetResponseSuccess
172
106
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatasetResponseSuccess
@@ -189,55 +123,12 @@ module Aws
189
123
  key: ::String?,
190
124
  bucket_owner: ::String?
191
125
  },
192
- ?configuration: {
193
- dataset_statistics_configuration: {
194
- included_statistics: Array[::String]?,
195
- overrides: Array[
196
- {
197
- statistic: ::String,
198
- parameters: Hash[::String, ::String]
199
- },
200
- ]?
201
- }?,
202
- profile_columns: Array[
203
- {
204
- regex: ::String?,
205
- name: ::String?
206
- },
207
- ]?,
208
- column_statistics_configurations: Array[
209
- {
210
- selectors: Array[
211
- {
212
- regex: ::String?,
213
- name: ::String?
214
- },
215
- ]?,
216
- statistics: {
217
- included_statistics: Array[::String]?,
218
- overrides: Array[
219
- {
220
- statistic: ::String,
221
- parameters: Hash[::String, ::String]
222
- },
223
- ]?
224
- }
225
- },
226
- ]?,
227
- entity_detector_configuration: {
228
- entity_types: Array[::String],
229
- allowed_statistics: Array[
230
- {
231
- statistics: Array[::String]
232
- },
233
- ]?
234
- }?
235
- },
126
+ ?configuration: Params::profile_configuration,
236
127
  ?validation_configurations: Array[
237
128
  {
238
129
  ruleset_arn: ::String,
239
130
  validation_mode: ("CHECK_ALL")?
240
- },
131
+ }
241
132
  ],
242
133
  role_arn: ::String,
243
134
  ?tags: Hash[::String, ::String],
@@ -276,19 +167,7 @@ module Aws
276
167
  ?description: ::String,
277
168
  name: ::String,
278
169
  steps: Array[
279
- {
280
- action: {
281
- operation: ::String,
282
- parameters: Hash[::String, ::String]?
283
- },
284
- condition_expressions: Array[
285
- {
286
- condition: ::String,
287
- value: ::String?,
288
- target_column: ::String
289
- },
290
- ]?
291
- },
170
+ Params::recipe_step
292
171
  ],
293
172
  ?tags: Hash[::String, ::String]
294
173
  ) -> _CreateRecipeResponseSuccess
@@ -308,60 +187,13 @@ module Aws
308
187
  ?max_capacity: ::Integer,
309
188
  ?max_retries: ::Integer,
310
189
  ?outputs: Array[
311
- {
312
- compression_format: ("GZIP" | "LZ4" | "SNAPPY" | "BZIP2" | "DEFLATE" | "LZO" | "BROTLI" | "ZSTD" | "ZLIB")?,
313
- format: ("CSV" | "JSON" | "PARQUET" | "GLUEPARQUET" | "AVRO" | "ORC" | "XML" | "TABLEAUHYPER")?,
314
- partition_columns: Array[::String]?,
315
- location: {
316
- bucket: ::String,
317
- key: ::String?,
318
- bucket_owner: ::String?
319
- },
320
- overwrite: bool?,
321
- format_options: {
322
- csv: {
323
- delimiter: ::String?
324
- }?
325
- }?,
326
- max_output_files: ::Integer?
327
- },
190
+ Params::output
328
191
  ],
329
192
  ?data_catalog_outputs: Array[
330
- {
331
- catalog_id: ::String?,
332
- database_name: ::String,
333
- table_name: ::String,
334
- s3_options: {
335
- location: {
336
- bucket: ::String,
337
- key: ::String?,
338
- bucket_owner: ::String?
339
- }
340
- }?,
341
- database_options: {
342
- temp_directory: {
343
- bucket: ::String,
344
- key: ::String?,
345
- bucket_owner: ::String?
346
- }?,
347
- table_name: ::String
348
- }?,
349
- overwrite: bool?
350
- },
193
+ Params::data_catalog_output
351
194
  ],
352
195
  ?database_outputs: Array[
353
- {
354
- glue_connection_name: ::String,
355
- database_options: {
356
- temp_directory: {
357
- bucket: ::String,
358
- key: ::String?,
359
- bucket_owner: ::String?
360
- }?,
361
- table_name: ::String
362
- },
363
- database_output_mode: ("NEW_TABLE")?
364
- },
196
+ Params::database_output
365
197
  ],
366
198
  ?project_name: ::String,
367
199
  ?recipe_reference: {
@@ -384,23 +216,7 @@ module Aws
384
216
  ?description: ::String,
385
217
  target_arn: ::String,
386
218
  rules: Array[
387
- {
388
- name: ::String,
389
- disabled: bool?,
390
- check_expression: ::String,
391
- substitution_map: Hash[::String, ::String]?,
392
- threshold: {
393
- value: ::Float,
394
- type: ("GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "GREATER_THAN" | "LESS_THAN")?,
395
- unit: ("COUNT" | "PERCENTAGE")?
396
- }?,
397
- column_selectors: Array[
398
- {
399
- regex: ::String?,
400
- name: ::String?
401
- },
402
- ]?
403
- },
219
+ Params::rule
404
220
  ],
405
221
  ?tags: Hash[::String, ::String]
406
222
  ) -> _CreateRulesetResponseSuccess
@@ -781,19 +597,7 @@ module Aws
781
597
  def send_project_session_action: (
782
598
  ?preview: bool,
783
599
  name: ::String,
784
- ?recipe_step: {
785
- action: {
786
- operation: ::String,
787
- parameters: Hash[::String, ::String]?
788
- },
789
- condition_expressions: Array[
790
- {
791
- condition: ::String,
792
- value: ::String?,
793
- target_column: ::String
794
- },
795
- ]?
796
- },
600
+ ?recipe_step: Params::recipe_step,
797
601
  ?step_index: ::Integer,
798
602
  ?client_session_id: ::String,
799
603
  ?view_frame: {
@@ -868,75 +672,9 @@ module Aws
868
672
  def update_dataset: (
869
673
  name: ::String,
870
674
  ?format: ("CSV" | "JSON" | "PARQUET" | "EXCEL" | "ORC"),
871
- ?format_options: {
872
- json: {
873
- multi_line: bool?
874
- }?,
875
- excel: {
876
- sheet_names: Array[::String]?,
877
- sheet_indexes: Array[::Integer]?,
878
- header_row: bool?
879
- }?,
880
- csv: {
881
- delimiter: ::String?,
882
- header_row: bool?
883
- }?
884
- },
885
- input: {
886
- s3_input_definition: {
887
- bucket: ::String,
888
- key: ::String?,
889
- bucket_owner: ::String?
890
- }?,
891
- data_catalog_input_definition: {
892
- catalog_id: ::String?,
893
- database_name: ::String,
894
- table_name: ::String,
895
- temp_directory: {
896
- bucket: ::String,
897
- key: ::String?,
898
- bucket_owner: ::String?
899
- }?
900
- }?,
901
- database_input_definition: {
902
- glue_connection_name: ::String,
903
- database_table_name: ::String?,
904
- temp_directory: {
905
- bucket: ::String,
906
- key: ::String?,
907
- bucket_owner: ::String?
908
- }?,
909
- query_string: ::String?
910
- }?,
911
- metadata: {
912
- source_arn: ::String?
913
- }?
914
- },
915
- ?path_options: {
916
- last_modified_date_condition: {
917
- expression: ::String,
918
- values_map: Hash[::String, ::String]
919
- }?,
920
- files_limit: {
921
- max_files: ::Integer,
922
- ordered_by: ("LAST_MODIFIED_DATE")?,
923
- order: ("DESCENDING" | "ASCENDING")?
924
- }?,
925
- parameters: Hash[::String, {
926
- name: ::String,
927
- type: ("Datetime" | "Number" | "String"),
928
- datetime_options: {
929
- format: ::String,
930
- timezone_offset: ::String?,
931
- locale_code: ::String?
932
- }?,
933
- create_column: bool?,
934
- filter: {
935
- expression: ::String,
936
- values_map: Hash[::String, ::String]
937
- }?
938
- }]?
939
- }
675
+ ?format_options: Params::format_options,
676
+ input: Params::input,
677
+ ?path_options: Params::path_options
940
678
  ) -> _UpdateDatasetResponseSuccess
941
679
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDatasetResponseSuccess
942
680
 
@@ -946,50 +684,7 @@ module Aws
946
684
  end
947
685
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/GlueDataBrew/Client.html#update_profile_job-instance_method
948
686
  def update_profile_job: (
949
- ?configuration: {
950
- dataset_statistics_configuration: {
951
- included_statistics: Array[::String]?,
952
- overrides: Array[
953
- {
954
- statistic: ::String,
955
- parameters: Hash[::String, ::String]
956
- },
957
- ]?
958
- }?,
959
- profile_columns: Array[
960
- {
961
- regex: ::String?,
962
- name: ::String?
963
- },
964
- ]?,
965
- column_statistics_configurations: Array[
966
- {
967
- selectors: Array[
968
- {
969
- regex: ::String?,
970
- name: ::String?
971
- },
972
- ]?,
973
- statistics: {
974
- included_statistics: Array[::String]?,
975
- overrides: Array[
976
- {
977
- statistic: ::String,
978
- parameters: Hash[::String, ::String]
979
- },
980
- ]?
981
- }
982
- },
983
- ]?,
984
- entity_detector_configuration: {
985
- entity_types: Array[::String],
986
- allowed_statistics: Array[
987
- {
988
- statistics: Array[::String]
989
- },
990
- ]?
991
- }?
992
- },
687
+ ?configuration: Params::profile_configuration,
993
688
  ?encryption_key_arn: ::String,
994
689
  ?encryption_mode: ("SSE-KMS" | "SSE-S3"),
995
690
  name: ::String,
@@ -1005,7 +700,7 @@ module Aws
1005
700
  {
1006
701
  ruleset_arn: ::String,
1007
702
  validation_mode: ("CHECK_ALL")?
1008
- },
703
+ }
1009
704
  ],
1010
705
  role_arn: ::String,
1011
706
  ?timeout: ::Integer,
@@ -1041,19 +736,7 @@ module Aws
1041
736
  ?description: ::String,
1042
737
  name: ::String,
1043
738
  ?steps: Array[
1044
- {
1045
- action: {
1046
- operation: ::String,
1047
- parameters: Hash[::String, ::String]?
1048
- },
1049
- condition_expressions: Array[
1050
- {
1051
- condition: ::String,
1052
- value: ::String?,
1053
- target_column: ::String
1054
- },
1055
- ]?
1056
- },
739
+ Params::recipe_step
1057
740
  ]
1058
741
  ) -> _UpdateRecipeResponseSuccess
1059
742
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRecipeResponseSuccess
@@ -1071,60 +754,13 @@ module Aws
1071
754
  ?max_capacity: ::Integer,
1072
755
  ?max_retries: ::Integer,
1073
756
  ?outputs: Array[
1074
- {
1075
- compression_format: ("GZIP" | "LZ4" | "SNAPPY" | "BZIP2" | "DEFLATE" | "LZO" | "BROTLI" | "ZSTD" | "ZLIB")?,
1076
- format: ("CSV" | "JSON" | "PARQUET" | "GLUEPARQUET" | "AVRO" | "ORC" | "XML" | "TABLEAUHYPER")?,
1077
- partition_columns: Array[::String]?,
1078
- location: {
1079
- bucket: ::String,
1080
- key: ::String?,
1081
- bucket_owner: ::String?
1082
- },
1083
- overwrite: bool?,
1084
- format_options: {
1085
- csv: {
1086
- delimiter: ::String?
1087
- }?
1088
- }?,
1089
- max_output_files: ::Integer?
1090
- },
757
+ Params::output
1091
758
  ],
1092
759
  ?data_catalog_outputs: Array[
1093
- {
1094
- catalog_id: ::String?,
1095
- database_name: ::String,
1096
- table_name: ::String,
1097
- s3_options: {
1098
- location: {
1099
- bucket: ::String,
1100
- key: ::String?,
1101
- bucket_owner: ::String?
1102
- }
1103
- }?,
1104
- database_options: {
1105
- temp_directory: {
1106
- bucket: ::String,
1107
- key: ::String?,
1108
- bucket_owner: ::String?
1109
- }?,
1110
- table_name: ::String
1111
- }?,
1112
- overwrite: bool?
1113
- },
760
+ Params::data_catalog_output
1114
761
  ],
1115
762
  ?database_outputs: Array[
1116
- {
1117
- glue_connection_name: ::String,
1118
- database_options: {
1119
- temp_directory: {
1120
- bucket: ::String,
1121
- key: ::String?,
1122
- bucket_owner: ::String?
1123
- }?,
1124
- table_name: ::String
1125
- },
1126
- database_output_mode: ("NEW_TABLE")?
1127
- },
763
+ Params::database_output
1128
764
  ],
1129
765
  role_arn: ::String,
1130
766
  ?timeout: ::Integer
@@ -1140,23 +776,7 @@ module Aws
1140
776
  name: ::String,
1141
777
  ?description: ::String,
1142
778
  rules: Array[
1143
- {
1144
- name: ::String,
1145
- disabled: bool?,
1146
- check_expression: ::String,
1147
- substitution_map: Hash[::String, ::String]?,
1148
- threshold: {
1149
- value: ::Float,
1150
- type: ("GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "GREATER_THAN" | "LESS_THAN")?,
1151
- unit: ("COUNT" | "PERCENTAGE")?
1152
- }?,
1153
- column_selectors: Array[
1154
- {
1155
- regex: ::String?,
1156
- name: ::String?
1157
- },
1158
- ]?
1159
- },
779
+ Params::rule
1160
780
  ]
1161
781
  ) -> _UpdateRulesetResponseSuccess
1162
782
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRulesetResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,218 @@
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
9
+ module GlueDataBrew
10
+ module Params
11
+ type format_options = {
12
+ json: {
13
+ multi_line: bool?
14
+ }?,
15
+ excel: {
16
+ sheet_names: Array[::String]?,
17
+ sheet_indexes: Array[::Integer]?,
18
+ header_row: bool?
19
+ }?,
20
+ csv: {
21
+ delimiter: ::String?,
22
+ header_row: bool?
23
+ }?
24
+ }
25
+
26
+ type data_catalog_input_definition = {
27
+ catalog_id: ::String?,
28
+ database_name: ::String,
29
+ table_name: ::String,
30
+ temp_directory: {
31
+ bucket: ::String,
32
+ key: ::String?,
33
+ bucket_owner: ::String?
34
+ }?
35
+ }
36
+
37
+ type database_input_definition = {
38
+ glue_connection_name: ::String,
39
+ database_table_name: ::String?,
40
+ temp_directory: {
41
+ bucket: ::String,
42
+ key: ::String?,
43
+ bucket_owner: ::String?
44
+ }?,
45
+ query_string: ::String?
46
+ }
47
+
48
+ type input = {
49
+ s3_input_definition: {
50
+ bucket: ::String,
51
+ key: ::String?,
52
+ bucket_owner: ::String?
53
+ }?,
54
+ data_catalog_input_definition: Params::data_catalog_input_definition?,
55
+ database_input_definition: Params::database_input_definition?,
56
+ metadata: {
57
+ source_arn: ::String?
58
+ }?
59
+ }
60
+
61
+ type path_options = {
62
+ last_modified_date_condition: {
63
+ expression: ::String,
64
+ values_map: Hash[::String, ::String]
65
+ }?,
66
+ files_limit: {
67
+ max_files: ::Integer,
68
+ ordered_by: ("LAST_MODIFIED_DATE")?,
69
+ order: ("DESCENDING" | "ASCENDING")?
70
+ }?,
71
+ parameters: Hash[::String, Params::dataset_parameter]?
72
+ }
73
+
74
+ type dataset_parameter = {
75
+ name: ::String,
76
+ type: ("Datetime" | "Number" | "String"),
77
+ datetime_options: {
78
+ format: ::String,
79
+ timezone_offset: ::String?,
80
+ locale_code: ::String?
81
+ }?,
82
+ create_column: bool?,
83
+ filter: {
84
+ expression: ::String,
85
+ values_map: Hash[::String, ::String]
86
+ }?
87
+ }
88
+
89
+ type profile_configuration = {
90
+ dataset_statistics_configuration: {
91
+ included_statistics: Array[::String]?,
92
+ overrides: Array[
93
+ {
94
+ statistic: ::String,
95
+ parameters: Hash[::String, ::String]
96
+ }
97
+ ]?
98
+ }?,
99
+ profile_columns: Array[
100
+ {
101
+ regex: ::String?,
102
+ name: ::String?
103
+ }
104
+ ]?,
105
+ column_statistics_configurations: Array[
106
+ Params::column_statistics_configuration
107
+ ]?,
108
+ entity_detector_configuration: {
109
+ entity_types: Array[::String],
110
+ allowed_statistics: Array[
111
+ {
112
+ statistics: Array[::String]
113
+ }
114
+ ]?
115
+ }?
116
+ }
117
+
118
+ type column_statistics_configuration = {
119
+ selectors: Array[
120
+ {
121
+ regex: ::String?,
122
+ name: ::String?
123
+ }
124
+ ]?,
125
+ statistics: {
126
+ included_statistics: Array[::String]?,
127
+ overrides: Array[
128
+ {
129
+ statistic: ::String,
130
+ parameters: Hash[::String, ::String]
131
+ }
132
+ ]?
133
+ }
134
+ }
135
+
136
+ type recipe_step = {
137
+ action: {
138
+ operation: ::String,
139
+ parameters: Hash[::String, ::String]?
140
+ },
141
+ condition_expressions: Array[
142
+ {
143
+ condition: ::String,
144
+ value: ::String?,
145
+ target_column: ::String
146
+ }
147
+ ]?
148
+ }
149
+
150
+ type output = {
151
+ compression_format: ("GZIP" | "LZ4" | "SNAPPY" | "BZIP2" | "DEFLATE" | "LZO" | "BROTLI" | "ZSTD" | "ZLIB")?,
152
+ format: ("CSV" | "JSON" | "PARQUET" | "GLUEPARQUET" | "AVRO" | "ORC" | "XML" | "TABLEAUHYPER")?,
153
+ partition_columns: Array[::String]?,
154
+ location: {
155
+ bucket: ::String,
156
+ key: ::String?,
157
+ bucket_owner: ::String?
158
+ },
159
+ overwrite: bool?,
160
+ format_options: {
161
+ csv: {
162
+ delimiter: ::String?
163
+ }?
164
+ }?,
165
+ max_output_files: ::Integer?
166
+ }
167
+
168
+ type database_table_output_options = {
169
+ temp_directory: {
170
+ bucket: ::String,
171
+ key: ::String?,
172
+ bucket_owner: ::String?
173
+ }?,
174
+ table_name: ::String
175
+ }
176
+
177
+ type data_catalog_output = {
178
+ catalog_id: ::String?,
179
+ database_name: ::String,
180
+ table_name: ::String,
181
+ s3_options: {
182
+ location: {
183
+ bucket: ::String,
184
+ key: ::String?,
185
+ bucket_owner: ::String?
186
+ }
187
+ }?,
188
+ database_options: Params::database_table_output_options?,
189
+ overwrite: bool?
190
+ }
191
+
192
+ type database_output = {
193
+ glue_connection_name: ::String,
194
+ database_options: Params::database_table_output_options,
195
+ database_output_mode: ("NEW_TABLE")?
196
+ }
197
+
198
+ type rule = {
199
+ name: ::String,
200
+ disabled: bool?,
201
+ check_expression: ::String,
202
+ substitution_map: Hash[::String, ::String]?,
203
+ threshold: {
204
+ value: ::Float,
205
+ type: ("GREATER_THAN_OR_EQUAL" | "LESS_THAN_OR_EQUAL" | "GREATER_THAN" | "LESS_THAN")?,
206
+ unit: ("COUNT" | "PERCENTAGE")?
207
+ }?,
208
+ column_selectors: Array[
209
+ {
210
+ regex: ::String?,
211
+ name: ::String?
212
+ }
213
+ ]?
214
+ }
215
+
216
+ end
217
+ end
218
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-gluedatabrew
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.67.0
4
+ version: 1.69.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.244.0
21
+ version: 3.247.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.244.0
31
+ version: 3.247.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-gluedatabrew/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs