aws-sdk-gluedatabrew 1.68.0 → 1.70.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: 4702bb059b5ededc198fca023f6c73d30606f9cf3c6c606eea84834df1f11401
4
- data.tar.gz: eb4e8e8bc5eaec54d7c3ad173513d42c3915f40e81b270384c7ac27186d077d7
3
+ metadata.gz: 6e4222223722017c3d1b7a1a8a79e5286b986e2666bb1597d229ff3652455f08
4
+ data.tar.gz: 6796aebb96fb64a9f86abbcaf0c6f1829fadcb381619a0e160d5788c951e8191
5
5
  SHA512:
6
- metadata.gz: ed6ebd78187090e80d5f50fee53502a5651e98df24a1406f1c5b3ee8adfd9bec9b63073213a1da37d6d32c8c7931840f15449d930f6a0986916d38d87f099765
7
- data.tar.gz: 6c7170b3bc840068de167c682746680c5b1512e998dfd9a716690933c1536b7e4c8c5a39d35464bf4faafe9b0c57cdd841556117fefb812e5bf834b750a3fedf
6
+ metadata.gz: f47a9cf13edc8ff746a00f7b2ac264d1c4b9c741ff5c654079018d148fc2cc1c860c35c1e32b46186ed3d66a0fdd820511a5200adea663fe949840e91b5f8d00
7
+ data.tar.gz: 48c46c9bbc78c34e00d299bbd148400eedd67ee3e4b349200b7c97ffa0992a2df85be7f7b03448225518d17534488718422d6a7f7881a904fdf32ddd95ad84cd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.70.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.69.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.68.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.70.0
@@ -199,7 +199,7 @@ module Aws::GlueDataBrew
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::GlueDataBrew
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -3447,7 +3445,7 @@ module Aws::GlueDataBrew
3447
3445
  tracer: tracer
3448
3446
  )
3449
3447
  context[:gem_name] = 'aws-sdk-gluedatabrew'
3450
- context[:gem_version] = '1.68.0'
3448
+ context[:gem_version] = '1.70.0'
3451
3449
  Seahorse::Client::Request.new(handlers, context)
3452
3450
  end
3453
3451
 
@@ -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.68.0'
57
+ GEM_VERSION = '1.70.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.68.0
4
+ version: 1.70.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.247.0
21
+ version: 3.248.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.247.0
31
+ version: 3.248.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