aws-sdk-gluedatabrew 1.6.0 → 1.7.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: 2b15f1d9ae0302d7cf8f7c255e48487651de4f7a7da05821e0e3bdecee270f46
4
- data.tar.gz: 6ba1ec7e19340aec72d99ec83fea6b870010414d98e501335944fe9cf0fd8ba4
3
+ metadata.gz: b1f0370109214a987494fc4c1269c4afa58a4bebbfdf916669d7fabb291b2e29
4
+ data.tar.gz: b0c6dca740e6820ff6f75de9c4fe60a1d12ac0a09a301c61d25f94f7644b73b5
5
5
  SHA512:
6
- metadata.gz: 6ddea198f08300196fceceb0e7f013b6836498222e4a4202447b27c38c9f7a0906fbe6a93a0dbbb27cc1f175129327cf5a363a94c3ffa816fc548da087eb6e3f
7
- data.tar.gz: 031a5a3dca9320c5b6b030f917178006f521a2313f50c34990792d5308dae2f1ecabc6ccdeaf20e869bd69a6635c3e5f612f6499690113c9f49f0d1d225bfc9d
6
+ metadata.gz: da2c2891a69d23b22c886a1b98cd25f5e200e075303b4f617e6c191c77a17275c01b5ff1fd56638474deb04b81aea78be7a256df1a8a664c8c1597dfa2138451
7
+ data.tar.gz: d9e19e5a3858584b3a3afe0cfb5f3ac75ab27e68234189c9dd613c1b5f9a10884d7934f25b19869bed82e20f81904bc8e943052cc857c42edf32140a11d05b98
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2021-03-30)
5
+ ------------------
6
+
7
+ * Feature - This SDK release adds two new dataset features: 1) support for specifying a database connection as a dataset input 2) support for dynamic datasets that accept configurable parameters in S3 path.
8
+
4
9
  1.6.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-gluedatabrew/customizations'
48
48
  # @!group service
49
49
  module Aws::GlueDataBrew
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.7.0'
52
52
 
53
53
  end
@@ -400,15 +400,20 @@ module Aws::GlueDataBrew
400
400
  # alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
401
401
  #
402
402
  # @option params [String] :format
403
- # Specifies the file format of a dataset created from an S3 file or
403
+ # The file format of a dataset that is created from an S3 file or
404
404
  # folder.
405
405
  #
406
406
  # @option params [Types::FormatOptions] :format_options
407
- # Options that define the structure of either Csv, Excel, or JSON input.
407
+ # Represents a set of options that define the structure of either
408
+ # comma-separated value (CSV), Excel, or JSON input.
408
409
  #
409
410
  # @option params [required, Types::Input] :input
410
- # Information on how DataBrew can find data, in either the AWS Glue Data
411
- # Catalog or Amazon S3.
411
+ # Represents information on how DataBrew can find data, in either the
412
+ # AWS Glue Data Catalog or Amazon S3.
413
+ #
414
+ # @option params [Types::PathOptions] :path_options
415
+ # A set of options that defines how DataBrew interprets an S3 path of
416
+ # the dataset.
412
417
  #
413
418
  # @option params [Hash<String,String>] :tags
414
419
  # Metadata tags to apply to this dataset.
@@ -450,6 +455,45 @@ module Aws::GlueDataBrew
450
455
  # key: "Key",
451
456
  # },
452
457
  # },
458
+ # database_input_definition: {
459
+ # glue_connection_name: "GlueConnectionName", # required
460
+ # database_table_name: "DatabaseTableName", # required
461
+ # temp_directory: {
462
+ # bucket: "Bucket", # required
463
+ # key: "Key",
464
+ # },
465
+ # },
466
+ # },
467
+ # path_options: {
468
+ # last_modified_date_condition: {
469
+ # expression: "Expression", # required
470
+ # values_map: { # required
471
+ # "ValueReference" => "ConditionValue",
472
+ # },
473
+ # },
474
+ # files_limit: {
475
+ # max_files: 1, # required
476
+ # ordered_by: "LAST_MODIFIED_DATE", # accepts LAST_MODIFIED_DATE
477
+ # order: "DESCENDING", # accepts DESCENDING, ASCENDING
478
+ # },
479
+ # parameters: {
480
+ # "PathParameterName" => {
481
+ # name: "PathParameterName", # required
482
+ # type: "Datetime", # required, accepts Datetime, Number, String
483
+ # datetime_options: {
484
+ # format: "DatetimeFormat", # required
485
+ # timezone_offset: "TimezoneOffset",
486
+ # locale_code: "LocaleCode",
487
+ # },
488
+ # create_column: false,
489
+ # filter: {
490
+ # expression: "Expression", # required
491
+ # values_map: { # required
492
+ # "ValueReference" => "ConditionValue",
493
+ # },
494
+ # },
495
+ # },
496
+ # },
453
497
  # },
454
498
  # tags: {
455
499
  # "TagKey" => "TagValue",
@@ -502,8 +546,8 @@ module Aws::GlueDataBrew
502
546
  # The maximum number of times to retry the job after a job run fails.
503
547
  #
504
548
  # @option params [required, Types::S3Location] :output_location
505
- # An Amazon S3 location (bucket name an object key) where DataBrew can
506
- # read input data, or write output from a job.
549
+ # Represents an Amazon S3 location (bucket name and object key) where
550
+ # DataBrew can read input data, or write output from a job.
507
551
  #
508
552
  # @option params [required, String] :role_arn
509
553
  # The Amazon Resource Name (ARN) of the AWS Identity and Access
@@ -1004,6 +1048,7 @@ module Aws::GlueDataBrew
1004
1048
  # * {Types::DescribeDatasetResponse#last_modified_date #last_modified_date} => Time
1005
1049
  # * {Types::DescribeDatasetResponse#last_modified_by #last_modified_by} => String
1006
1050
  # * {Types::DescribeDatasetResponse#source #source} => String
1051
+ # * {Types::DescribeDatasetResponse#path_options #path_options} => Types::PathOptions
1007
1052
  # * {Types::DescribeDatasetResponse#tags #tags} => Hash&lt;String,String&gt;
1008
1053
  # * {Types::DescribeDatasetResponse#resource_arn #resource_arn} => String
1009
1054
  #
@@ -1034,9 +1079,29 @@ module Aws::GlueDataBrew
1034
1079
  # resp.input.data_catalog_input_definition.table_name #=> String
1035
1080
  # resp.input.data_catalog_input_definition.temp_directory.bucket #=> String
1036
1081
  # resp.input.data_catalog_input_definition.temp_directory.key #=> String
1082
+ # resp.input.database_input_definition.glue_connection_name #=> String
1083
+ # resp.input.database_input_definition.database_table_name #=> String
1084
+ # resp.input.database_input_definition.temp_directory.bucket #=> String
1085
+ # resp.input.database_input_definition.temp_directory.key #=> String
1037
1086
  # resp.last_modified_date #=> Time
1038
1087
  # resp.last_modified_by #=> String
1039
- # resp.source #=> String, one of "S3", "DATA-CATALOG"
1088
+ # resp.source #=> String, one of "S3", "DATA-CATALOG", "DATABASE"
1089
+ # resp.path_options.last_modified_date_condition.expression #=> String
1090
+ # resp.path_options.last_modified_date_condition.values_map #=> Hash
1091
+ # resp.path_options.last_modified_date_condition.values_map["ValueReference"] #=> String
1092
+ # resp.path_options.files_limit.max_files #=> Integer
1093
+ # resp.path_options.files_limit.ordered_by #=> String, one of "LAST_MODIFIED_DATE"
1094
+ # resp.path_options.files_limit.order #=> String, one of "DESCENDING", "ASCENDING"
1095
+ # resp.path_options.parameters #=> Hash
1096
+ # resp.path_options.parameters["PathParameterName"].name #=> String
1097
+ # resp.path_options.parameters["PathParameterName"].type #=> String, one of "Datetime", "Number", "String"
1098
+ # resp.path_options.parameters["PathParameterName"].datetime_options.format #=> String
1099
+ # resp.path_options.parameters["PathParameterName"].datetime_options.timezone_offset #=> String
1100
+ # resp.path_options.parameters["PathParameterName"].datetime_options.locale_code #=> String
1101
+ # resp.path_options.parameters["PathParameterName"].create_column #=> Boolean
1102
+ # resp.path_options.parameters["PathParameterName"].filter.expression #=> String
1103
+ # resp.path_options.parameters["PathParameterName"].filter.values_map #=> Hash
1104
+ # resp.path_options.parameters["PathParameterName"].filter.values_map["ValueReference"] #=> String
1040
1105
  # resp.tags #=> Hash
1041
1106
  # resp.tags["TagKey"] #=> String
1042
1107
  # resp.resource_arn #=> String
@@ -1411,9 +1476,29 @@ module Aws::GlueDataBrew
1411
1476
  # resp.datasets[0].input.data_catalog_input_definition.table_name #=> String
1412
1477
  # resp.datasets[0].input.data_catalog_input_definition.temp_directory.bucket #=> String
1413
1478
  # resp.datasets[0].input.data_catalog_input_definition.temp_directory.key #=> String
1479
+ # resp.datasets[0].input.database_input_definition.glue_connection_name #=> String
1480
+ # resp.datasets[0].input.database_input_definition.database_table_name #=> String
1481
+ # resp.datasets[0].input.database_input_definition.temp_directory.bucket #=> String
1482
+ # resp.datasets[0].input.database_input_definition.temp_directory.key #=> String
1414
1483
  # resp.datasets[0].last_modified_date #=> Time
1415
1484
  # resp.datasets[0].last_modified_by #=> String
1416
- # resp.datasets[0].source #=> String, one of "S3", "DATA-CATALOG"
1485
+ # resp.datasets[0].source #=> String, one of "S3", "DATA-CATALOG", "DATABASE"
1486
+ # resp.datasets[0].path_options.last_modified_date_condition.expression #=> String
1487
+ # resp.datasets[0].path_options.last_modified_date_condition.values_map #=> Hash
1488
+ # resp.datasets[0].path_options.last_modified_date_condition.values_map["ValueReference"] #=> String
1489
+ # resp.datasets[0].path_options.files_limit.max_files #=> Integer
1490
+ # resp.datasets[0].path_options.files_limit.ordered_by #=> String, one of "LAST_MODIFIED_DATE"
1491
+ # resp.datasets[0].path_options.files_limit.order #=> String, one of "DESCENDING", "ASCENDING"
1492
+ # resp.datasets[0].path_options.parameters #=> Hash
1493
+ # resp.datasets[0].path_options.parameters["PathParameterName"].name #=> String
1494
+ # resp.datasets[0].path_options.parameters["PathParameterName"].type #=> String, one of "Datetime", "Number", "String"
1495
+ # resp.datasets[0].path_options.parameters["PathParameterName"].datetime_options.format #=> String
1496
+ # resp.datasets[0].path_options.parameters["PathParameterName"].datetime_options.timezone_offset #=> String
1497
+ # resp.datasets[0].path_options.parameters["PathParameterName"].datetime_options.locale_code #=> String
1498
+ # resp.datasets[0].path_options.parameters["PathParameterName"].create_column #=> Boolean
1499
+ # resp.datasets[0].path_options.parameters["PathParameterName"].filter.expression #=> String
1500
+ # resp.datasets[0].path_options.parameters["PathParameterName"].filter.values_map #=> Hash
1501
+ # resp.datasets[0].path_options.parameters["PathParameterName"].filter.values_map["ValueReference"] #=> String
1417
1502
  # resp.datasets[0].tags #=> Hash
1418
1503
  # resp.datasets[0].tags["TagKey"] #=> String
1419
1504
  # resp.datasets[0].resource_arn #=> String
@@ -1896,7 +1981,7 @@ module Aws::GlueDataBrew
1896
1981
  # and ready for work. The action will be performed on this session.
1897
1982
  #
1898
1983
  # @option params [Types::ViewFrame] :view_frame
1899
- # Represents the data being being transformed during an action.
1984
+ # Represents the data being transformed during an action.
1900
1985
  #
1901
1986
  # @return [Types::SendProjectSessionActionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1902
1987
  #
@@ -2108,15 +2193,20 @@ module Aws::GlueDataBrew
2108
2193
  # The name of the dataset to be updated.
2109
2194
  #
2110
2195
  # @option params [String] :format
2111
- # Specifies the file format of a dataset created from an S3 file or
2196
+ # The file format of a dataset that is created from an S3 file or
2112
2197
  # folder.
2113
2198
  #
2114
2199
  # @option params [Types::FormatOptions] :format_options
2115
- # Options that define the structure of either Csv, Excel, or JSON input.
2200
+ # Represents a set of options that define the structure of either
2201
+ # comma-separated value (CSV), Excel, or JSON input.
2116
2202
  #
2117
2203
  # @option params [required, Types::Input] :input
2118
- # Information on how DataBrew can find data, in either the AWS Glue Data
2119
- # Catalog or Amazon S3.
2204
+ # Represents information on how DataBrew can find data, in either the
2205
+ # AWS Glue Data Catalog or Amazon S3.
2206
+ #
2207
+ # @option params [Types::PathOptions] :path_options
2208
+ # A set of options that defines how DataBrew interprets an S3 path of
2209
+ # the dataset.
2120
2210
  #
2121
2211
  # @return [Types::UpdateDatasetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2122
2212
  #
@@ -2155,6 +2245,45 @@ module Aws::GlueDataBrew
2155
2245
  # key: "Key",
2156
2246
  # },
2157
2247
  # },
2248
+ # database_input_definition: {
2249
+ # glue_connection_name: "GlueConnectionName", # required
2250
+ # database_table_name: "DatabaseTableName", # required
2251
+ # temp_directory: {
2252
+ # bucket: "Bucket", # required
2253
+ # key: "Key",
2254
+ # },
2255
+ # },
2256
+ # },
2257
+ # path_options: {
2258
+ # last_modified_date_condition: {
2259
+ # expression: "Expression", # required
2260
+ # values_map: { # required
2261
+ # "ValueReference" => "ConditionValue",
2262
+ # },
2263
+ # },
2264
+ # files_limit: {
2265
+ # max_files: 1, # required
2266
+ # ordered_by: "LAST_MODIFIED_DATE", # accepts LAST_MODIFIED_DATE
2267
+ # order: "DESCENDING", # accepts DESCENDING, ASCENDING
2268
+ # },
2269
+ # parameters: {
2270
+ # "PathParameterName" => {
2271
+ # name: "PathParameterName", # required
2272
+ # type: "Datetime", # required, accepts Datetime, Number, String
2273
+ # datetime_options: {
2274
+ # format: "DatetimeFormat", # required
2275
+ # timezone_offset: "TimezoneOffset",
2276
+ # locale_code: "LocaleCode",
2277
+ # },
2278
+ # create_column: false,
2279
+ # filter: {
2280
+ # expression: "Expression", # required
2281
+ # values_map: { # required
2282
+ # "ValueReference" => "ConditionValue",
2283
+ # },
2284
+ # },
2285
+ # },
2286
+ # },
2158
2287
  # },
2159
2288
  # })
2160
2289
  #
@@ -2199,8 +2328,8 @@ module Aws::GlueDataBrew
2199
2328
  # The maximum number of times to retry the job after a job run fails.
2200
2329
  #
2201
2330
  # @option params [required, Types::S3Location] :output_location
2202
- # An Amazon S3 location (bucket name an object key) where DataBrew can
2203
- # read input data, or write output from a job.
2331
+ # Represents an Amazon S3 location (bucket name and object key) where
2332
+ # DataBrew can read input data, or write output from a job.
2204
2333
  #
2205
2334
  # @option params [required, String] :role_arn
2206
2335
  # The Amazon Resource Name (ARN) of the AWS Identity and Access
@@ -2492,7 +2621,7 @@ module Aws::GlueDataBrew
2492
2621
  params: params,
2493
2622
  config: config)
2494
2623
  context[:gem_name] = 'aws-sdk-gluedatabrew'
2495
- context[:gem_version] = '1.6.0'
2624
+ context[:gem_version] = '1.7.0'
2496
2625
  Seahorse::Client::Request.new(handlers, context)
2497
2626
  end
2498
2627
 
@@ -33,6 +33,7 @@ module Aws::GlueDataBrew
33
33
  ConditionExpressionList = Shapes::ListShape.new(name: 'ConditionExpressionList')
34
34
  ConditionValue = Shapes::StringShape.new(name: 'ConditionValue')
35
35
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
36
+ CreateColumn = Shapes::BooleanShape.new(name: 'CreateColumn')
36
37
  CreateDatasetRequest = Shapes::StructureShape.new(name: 'CreateDatasetRequest')
37
38
  CreateDatasetResponse = Shapes::StructureShape.new(name: 'CreateDatasetResponse')
38
39
  CreateProfileJobRequest = Shapes::StructureShape.new(name: 'CreateProfileJobRequest')
@@ -50,11 +51,16 @@ module Aws::GlueDataBrew
50
51
  CsvOptions = Shapes::StructureShape.new(name: 'CsvOptions')
51
52
  CsvOutputOptions = Shapes::StructureShape.new(name: 'CsvOutputOptions')
52
53
  DataCatalogInputDefinition = Shapes::StructureShape.new(name: 'DataCatalogInputDefinition')
54
+ DatabaseInputDefinition = Shapes::StructureShape.new(name: 'DatabaseInputDefinition')
53
55
  DatabaseName = Shapes::StringShape.new(name: 'DatabaseName')
56
+ DatabaseTableName = Shapes::StringShape.new(name: 'DatabaseTableName')
54
57
  Dataset = Shapes::StructureShape.new(name: 'Dataset')
55
58
  DatasetList = Shapes::ListShape.new(name: 'DatasetList')
56
59
  DatasetName = Shapes::StringShape.new(name: 'DatasetName')
60
+ DatasetParameter = Shapes::StructureShape.new(name: 'DatasetParameter')
57
61
  Date = Shapes::TimestampShape.new(name: 'Date')
62
+ DatetimeFormat = Shapes::StringShape.new(name: 'DatetimeFormat')
63
+ DatetimeOptions = Shapes::StructureShape.new(name: 'DatetimeOptions')
58
64
  DeleteDatasetRequest = Shapes::StructureShape.new(name: 'DeleteDatasetRequest')
59
65
  DeleteDatasetResponse = Shapes::StructureShape.new(name: 'DeleteDatasetResponse')
60
66
  DeleteJobRequest = Shapes::StructureShape.new(name: 'DeleteJobRequest')
@@ -83,7 +89,11 @@ module Aws::GlueDataBrew
83
89
  ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
84
90
  ExcelOptions = Shapes::StructureShape.new(name: 'ExcelOptions')
85
91
  ExecutionTime = Shapes::IntegerShape.new(name: 'ExecutionTime')
92
+ Expression = Shapes::StringShape.new(name: 'Expression')
93
+ FilesLimit = Shapes::StructureShape.new(name: 'FilesLimit')
94
+ FilterExpression = Shapes::StructureShape.new(name: 'FilterExpression')
86
95
  FormatOptions = Shapes::StructureShape.new(name: 'FormatOptions')
96
+ GlueConnectionName = Shapes::StringShape.new(name: 'GlueConnectionName')
87
97
  HeaderRow = Shapes::BooleanShape.new(name: 'HeaderRow')
88
98
  HiddenColumnList = Shapes::ListShape.new(name: 'HiddenColumnList')
89
99
  Input = Shapes::StructureShape.new(name: 'Input')
@@ -120,9 +130,11 @@ module Aws::GlueDataBrew
120
130
  ListSchedulesResponse = Shapes::StructureShape.new(name: 'ListSchedulesResponse')
121
131
  ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
122
132
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
133
+ LocaleCode = Shapes::StringShape.new(name: 'LocaleCode')
123
134
  LogGroupName = Shapes::StringShape.new(name: 'LogGroupName')
124
135
  LogSubscription = Shapes::StringShape.new(name: 'LogSubscription')
125
136
  MaxCapacity = Shapes::IntegerShape.new(name: 'MaxCapacity')
137
+ MaxFiles = Shapes::IntegerShape.new(name: 'MaxFiles')
126
138
  MaxResults100 = Shapes::IntegerShape.new(name: 'MaxResults100')
127
139
  MaxRetries = Shapes::IntegerShape.new(name: 'MaxRetries')
128
140
  Message = Shapes::StringShape.new(name: 'Message')
@@ -130,6 +142,8 @@ module Aws::GlueDataBrew
130
142
  NextToken = Shapes::StringShape.new(name: 'NextToken')
131
143
  OpenedBy = Shapes::StringShape.new(name: 'OpenedBy')
132
144
  Operation = Shapes::StringShape.new(name: 'Operation')
145
+ Order = Shapes::StringShape.new(name: 'Order')
146
+ OrderedBy = Shapes::StringShape.new(name: 'OrderedBy')
133
147
  Output = Shapes::StructureShape.new(name: 'Output')
134
148
  OutputFormat = Shapes::StringShape.new(name: 'OutputFormat')
135
149
  OutputFormatOptions = Shapes::StructureShape.new(name: 'OutputFormatOptions')
@@ -137,7 +151,11 @@ module Aws::GlueDataBrew
137
151
  OverwriteOutput = Shapes::BooleanShape.new(name: 'OverwriteOutput')
138
152
  ParameterMap = Shapes::MapShape.new(name: 'ParameterMap')
139
153
  ParameterName = Shapes::StringShape.new(name: 'ParameterName')
154
+ ParameterType = Shapes::StringShape.new(name: 'ParameterType')
140
155
  ParameterValue = Shapes::StringShape.new(name: 'ParameterValue')
156
+ PathOptions = Shapes::StructureShape.new(name: 'PathOptions')
157
+ PathParameterName = Shapes::StringShape.new(name: 'PathParameterName')
158
+ PathParametersMap = Shapes::MapShape.new(name: 'PathParametersMap')
141
159
  Preview = Shapes::BooleanShape.new(name: 'Preview')
142
160
  Project = Shapes::StructureShape.new(name: 'Project')
143
161
  ProjectList = Shapes::ListShape.new(name: 'ProjectList')
@@ -195,6 +213,7 @@ module Aws::GlueDataBrew
195
213
  TagValue = Shapes::StringShape.new(name: 'TagValue')
196
214
  TargetColumn = Shapes::StringShape.new(name: 'TargetColumn')
197
215
  Timeout = Shapes::IntegerShape.new(name: 'Timeout')
216
+ TimezoneOffset = Shapes::StringShape.new(name: 'TimezoneOffset')
198
217
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
199
218
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
200
219
  UpdateDatasetRequest = Shapes::StructureShape.new(name: 'UpdateDatasetRequest')
@@ -210,6 +229,8 @@ module Aws::GlueDataBrew
210
229
  UpdateScheduleRequest = Shapes::StructureShape.new(name: 'UpdateScheduleRequest')
211
230
  UpdateScheduleResponse = Shapes::StructureShape.new(name: 'UpdateScheduleResponse')
212
231
  ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
232
+ ValueReference = Shapes::StringShape.new(name: 'ValueReference')
233
+ ValuesMap = Shapes::MapShape.new(name: 'ValuesMap')
213
234
  ViewFrame = Shapes::StructureShape.new(name: 'ViewFrame')
214
235
 
215
236
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
@@ -239,6 +260,7 @@ module Aws::GlueDataBrew
239
260
  CreateDatasetRequest.add_member(:format, Shapes::ShapeRef.new(shape: InputFormat, location_name: "Format"))
240
261
  CreateDatasetRequest.add_member(:format_options, Shapes::ShapeRef.new(shape: FormatOptions, location_name: "FormatOptions"))
241
262
  CreateDatasetRequest.add_member(:input, Shapes::ShapeRef.new(shape: Input, required: true, location_name: "Input"))
263
+ CreateDatasetRequest.add_member(:path_options, Shapes::ShapeRef.new(shape: PathOptions, location_name: "PathOptions"))
242
264
  CreateDatasetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
243
265
  CreateDatasetRequest.struct_class = Types::CreateDatasetRequest
244
266
 
@@ -322,6 +344,11 @@ module Aws::GlueDataBrew
322
344
  DataCatalogInputDefinition.add_member(:temp_directory, Shapes::ShapeRef.new(shape: S3Location, location_name: "TempDirectory"))
323
345
  DataCatalogInputDefinition.struct_class = Types::DataCatalogInputDefinition
324
346
 
347
+ DatabaseInputDefinition.add_member(:glue_connection_name, Shapes::ShapeRef.new(shape: GlueConnectionName, required: true, location_name: "GlueConnectionName"))
348
+ DatabaseInputDefinition.add_member(:database_table_name, Shapes::ShapeRef.new(shape: DatabaseTableName, required: true, location_name: "DatabaseTableName"))
349
+ DatabaseInputDefinition.add_member(:temp_directory, Shapes::ShapeRef.new(shape: S3Location, location_name: "TempDirectory"))
350
+ DatabaseInputDefinition.struct_class = Types::DatabaseInputDefinition
351
+
325
352
  Dataset.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
326
353
  Dataset.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "CreatedBy"))
327
354
  Dataset.add_member(:create_date, Shapes::ShapeRef.new(shape: Date, location_name: "CreateDate"))
@@ -332,12 +359,25 @@ module Aws::GlueDataBrew
332
359
  Dataset.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: Date, location_name: "LastModifiedDate"))
333
360
  Dataset.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: LastModifiedBy, location_name: "LastModifiedBy"))
334
361
  Dataset.add_member(:source, Shapes::ShapeRef.new(shape: Source, location_name: "Source"))
362
+ Dataset.add_member(:path_options, Shapes::ShapeRef.new(shape: PathOptions, location_name: "PathOptions"))
335
363
  Dataset.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
336
364
  Dataset.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ResourceArn"))
337
365
  Dataset.struct_class = Types::Dataset
338
366
 
339
367
  DatasetList.member = Shapes::ShapeRef.new(shape: Dataset)
340
368
 
369
+ DatasetParameter.add_member(:name, Shapes::ShapeRef.new(shape: PathParameterName, required: true, location_name: "Name"))
370
+ DatasetParameter.add_member(:type, Shapes::ShapeRef.new(shape: ParameterType, required: true, location_name: "Type"))
371
+ DatasetParameter.add_member(:datetime_options, Shapes::ShapeRef.new(shape: DatetimeOptions, location_name: "DatetimeOptions"))
372
+ DatasetParameter.add_member(:create_column, Shapes::ShapeRef.new(shape: CreateColumn, location_name: "CreateColumn"))
373
+ DatasetParameter.add_member(:filter, Shapes::ShapeRef.new(shape: FilterExpression, location_name: "Filter"))
374
+ DatasetParameter.struct_class = Types::DatasetParameter
375
+
376
+ DatetimeOptions.add_member(:format, Shapes::ShapeRef.new(shape: DatetimeFormat, required: true, location_name: "Format"))
377
+ DatetimeOptions.add_member(:timezone_offset, Shapes::ShapeRef.new(shape: TimezoneOffset, location_name: "TimezoneOffset"))
378
+ DatetimeOptions.add_member(:locale_code, Shapes::ShapeRef.new(shape: LocaleCode, location_name: "LocaleCode"))
379
+ DatetimeOptions.struct_class = Types::DatetimeOptions
380
+
341
381
  DeleteDatasetRequest.add_member(:name, Shapes::ShapeRef.new(shape: DatasetName, required: true, location: "uri", location_name: "name"))
342
382
  DeleteDatasetRequest.struct_class = Types::DeleteDatasetRequest
343
383
 
@@ -382,6 +422,7 @@ module Aws::GlueDataBrew
382
422
  DescribeDatasetResponse.add_member(:last_modified_date, Shapes::ShapeRef.new(shape: Date, location_name: "LastModifiedDate"))
383
423
  DescribeDatasetResponse.add_member(:last_modified_by, Shapes::ShapeRef.new(shape: LastModifiedBy, location_name: "LastModifiedBy"))
384
424
  DescribeDatasetResponse.add_member(:source, Shapes::ShapeRef.new(shape: Source, location_name: "Source"))
425
+ DescribeDatasetResponse.add_member(:path_options, Shapes::ShapeRef.new(shape: PathOptions, location_name: "PathOptions"))
385
426
  DescribeDatasetResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
386
427
  DescribeDatasetResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ResourceArn"))
387
428
  DescribeDatasetResponse.struct_class = Types::DescribeDatasetResponse
@@ -489,6 +530,15 @@ module Aws::GlueDataBrew
489
530
  ExcelOptions.add_member(:header_row, Shapes::ShapeRef.new(shape: HeaderRow, location_name: "HeaderRow"))
490
531
  ExcelOptions.struct_class = Types::ExcelOptions
491
532
 
533
+ FilesLimit.add_member(:max_files, Shapes::ShapeRef.new(shape: MaxFiles, required: true, location_name: "MaxFiles"))
534
+ FilesLimit.add_member(:ordered_by, Shapes::ShapeRef.new(shape: OrderedBy, location_name: "OrderedBy"))
535
+ FilesLimit.add_member(:order, Shapes::ShapeRef.new(shape: Order, location_name: "Order"))
536
+ FilesLimit.struct_class = Types::FilesLimit
537
+
538
+ FilterExpression.add_member(:expression, Shapes::ShapeRef.new(shape: Expression, required: true, location_name: "Expression"))
539
+ FilterExpression.add_member(:values_map, Shapes::ShapeRef.new(shape: ValuesMap, required: true, location_name: "ValuesMap"))
540
+ FilterExpression.struct_class = Types::FilterExpression
541
+
492
542
  FormatOptions.add_member(:json, Shapes::ShapeRef.new(shape: JsonOptions, location_name: "Json"))
493
543
  FormatOptions.add_member(:excel, Shapes::ShapeRef.new(shape: ExcelOptions, location_name: "Excel"))
494
544
  FormatOptions.add_member(:csv, Shapes::ShapeRef.new(shape: CsvOptions, location_name: "Csv"))
@@ -498,6 +548,7 @@ module Aws::GlueDataBrew
498
548
 
499
549
  Input.add_member(:s3_input_definition, Shapes::ShapeRef.new(shape: S3Location, location_name: "S3InputDefinition"))
500
550
  Input.add_member(:data_catalog_input_definition, Shapes::ShapeRef.new(shape: DataCatalogInputDefinition, location_name: "DataCatalogInputDefinition"))
551
+ Input.add_member(:database_input_definition, Shapes::ShapeRef.new(shape: DatabaseInputDefinition, location_name: "DatabaseInputDefinition"))
501
552
  Input.struct_class = Types::Input
502
553
 
503
554
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
@@ -640,6 +691,14 @@ module Aws::GlueDataBrew
640
691
  ParameterMap.key = Shapes::ShapeRef.new(shape: ParameterName)
641
692
  ParameterMap.value = Shapes::ShapeRef.new(shape: ParameterValue)
642
693
 
694
+ PathOptions.add_member(:last_modified_date_condition, Shapes::ShapeRef.new(shape: FilterExpression, location_name: "LastModifiedDateCondition"))
695
+ PathOptions.add_member(:files_limit, Shapes::ShapeRef.new(shape: FilesLimit, location_name: "FilesLimit"))
696
+ PathOptions.add_member(:parameters, Shapes::ShapeRef.new(shape: PathParametersMap, location_name: "Parameters"))
697
+ PathOptions.struct_class = Types::PathOptions
698
+
699
+ PathParametersMap.key = Shapes::ShapeRef.new(shape: PathParameterName)
700
+ PathParametersMap.value = Shapes::ShapeRef.new(shape: DatasetParameter)
701
+
643
702
  Project.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
644
703
  Project.add_member(:create_date, Shapes::ShapeRef.new(shape: Date, location_name: "CreateDate"))
645
704
  Project.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "CreatedBy"))
@@ -792,6 +851,7 @@ module Aws::GlueDataBrew
792
851
  UpdateDatasetRequest.add_member(:format, Shapes::ShapeRef.new(shape: InputFormat, location_name: "Format"))
793
852
  UpdateDatasetRequest.add_member(:format_options, Shapes::ShapeRef.new(shape: FormatOptions, location_name: "FormatOptions"))
794
853
  UpdateDatasetRequest.add_member(:input, Shapes::ShapeRef.new(shape: Input, required: true, location_name: "Input"))
854
+ UpdateDatasetRequest.add_member(:path_options, Shapes::ShapeRef.new(shape: PathOptions, location_name: "PathOptions"))
795
855
  UpdateDatasetRequest.struct_class = Types::UpdateDatasetRequest
796
856
 
797
857
  UpdateDatasetResponse.add_member(:name, Shapes::ShapeRef.new(shape: DatasetName, required: true, location_name: "Name"))
@@ -854,6 +914,9 @@ module Aws::GlueDataBrew
854
914
  ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
855
915
  ValidationException.struct_class = Types::ValidationException
856
916
 
917
+ ValuesMap.key = Shapes::ShapeRef.new(shape: ValueReference)
918
+ ValuesMap.value = Shapes::ShapeRef.new(shape: ConditionValue)
919
+
857
920
  ViewFrame.add_member(:start_column_index, Shapes::ShapeRef.new(shape: StartColumnIndex, required: true, location_name: "StartColumnIndex"))
858
921
  ViewFrame.add_member(:column_range, Shapes::ShapeRef.new(shape: ColumnRange, location_name: "ColumnRange"))
859
922
  ViewFrame.add_member(:hidden_columns, Shapes::ShapeRef.new(shape: HiddenColumnList, location_name: "HiddenColumns"))