aws-sdk-gluedatabrew 1.18.0 → 1.19.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: 535900e0eb77076c3034349139591688dff7f0efd39a74dd20a337a9e6b2cff6
4
- data.tar.gz: db82218f6ac3b9c4ca4ed9803c252644ffe4d2fca5dad5f129c8eabcc65dddf4
3
+ metadata.gz: 1b85a3f7bc8a90f78664921c6f951a9b05c8050da24fc3152aaa9b80aa1bd950
4
+ data.tar.gz: b28c96ead1be40dfbab0ddd57723c597e385f080c31dce37e780138d2395dbce
5
5
  SHA512:
6
- metadata.gz: 305d268d7cff482a400d8dcd103ee69dd9f0d77fd909203a1daff2c6818469e8c5a0f41a899c10656e680782437969ff9114ad6f82697c2da9413a30284e3d11
7
- data.tar.gz: 3e8a7760033f21ba53823e771784ef7f54c7b046a9516842bf05572cb092fb21c67a922e60e669ac0e01cf65fcd3951cd8decc6c789e14f84d8cfd3d231a0d8c
6
+ metadata.gz: 7b19b08d5a63597fd16c4da0607fc710d2f99b97234f3160e6f9270072cb5d512145c98c7f90ea556995eba92544c78333b06efceca4634b248edca4155fc0f6
7
+ data.tar.gz: 9e839f75f1f74b9b8caceca5233b74c8cf7d72c99432e63e9740247548574e61249e42ae191ba69903552cdd9d5b85aed9e1a12380a361ab7f88c02533d912fb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2022-01-10)
5
+ ------------------
6
+
7
+ * Feature - This SDK release adds support for specifying a Bucket Owner for an S3 location.
8
+
4
9
  1.18.0 (2021-12-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.19.0
@@ -465,6 +465,7 @@ module Aws::GlueDataBrew
465
465
  # s3_input_definition: {
466
466
  # bucket: "Bucket", # required
467
467
  # key: "Key",
468
+ # bucket_owner: "BucketOwner",
468
469
  # },
469
470
  # data_catalog_input_definition: {
470
471
  # catalog_id: "CatalogId",
@@ -473,6 +474,7 @@ module Aws::GlueDataBrew
473
474
  # temp_directory: {
474
475
  # bucket: "Bucket", # required
475
476
  # key: "Key",
477
+ # bucket_owner: "BucketOwner",
476
478
  # },
477
479
  # },
478
480
  # database_input_definition: {
@@ -481,6 +483,7 @@ module Aws::GlueDataBrew
481
483
  # temp_directory: {
482
484
  # bucket: "Bucket", # required
483
485
  # key: "Key",
486
+ # bucket_owner: "BucketOwner",
484
487
  # },
485
488
  # query_string: "QueryString",
486
489
  # },
@@ -570,8 +573,9 @@ module Aws::GlueDataBrew
570
573
  # The maximum number of times to retry the job after a job run fails.
571
574
  #
572
575
  # @option params [required, Types::S3Location] :output_location
573
- # Represents an Amazon S3 location (bucket name and object key) where
574
- # DataBrew can read input data, or write output from a job.
576
+ # Represents an Amazon S3 location (bucket name, bucket owner, and
577
+ # object key) where DataBrew can read input data, or write output from a
578
+ # job.
575
579
  #
576
580
  # @option params [Types::ProfileConfiguration] :configuration
577
581
  # Configuration for profile jobs. Used to select columns, do
@@ -615,6 +619,7 @@ module Aws::GlueDataBrew
615
619
  # output_location: { # required
616
620
  # bucket: "Bucket", # required
617
621
  # key: "Key",
622
+ # bucket_owner: "BucketOwner",
618
623
  # },
619
624
  # configuration: {
620
625
  # dataset_statistics_configuration: {
@@ -894,6 +899,7 @@ module Aws::GlueDataBrew
894
899
  # location: { # required
895
900
  # bucket: "Bucket", # required
896
901
  # key: "Key",
902
+ # bucket_owner: "BucketOwner",
897
903
  # },
898
904
  # overwrite: false,
899
905
  # format_options: {
@@ -912,12 +918,14 @@ module Aws::GlueDataBrew
912
918
  # location: { # required
913
919
  # bucket: "Bucket", # required
914
920
  # key: "Key",
921
+ # bucket_owner: "BucketOwner",
915
922
  # },
916
923
  # },
917
924
  # database_options: {
918
925
  # temp_directory: {
919
926
  # bucket: "Bucket", # required
920
927
  # key: "Key",
928
+ # bucket_owner: "BucketOwner",
921
929
  # },
922
930
  # table_name: "DatabaseTableName", # required
923
931
  # },
@@ -931,6 +939,7 @@ module Aws::GlueDataBrew
931
939
  # temp_directory: {
932
940
  # bucket: "Bucket", # required
933
941
  # key: "Key",
942
+ # bucket_owner: "BucketOwner",
934
943
  # },
935
944
  # table_name: "DatabaseTableName", # required
936
945
  # },
@@ -1300,15 +1309,18 @@ module Aws::GlueDataBrew
1300
1309
  # resp.format_options.csv.header_row #=> Boolean
1301
1310
  # resp.input.s3_input_definition.bucket #=> String
1302
1311
  # resp.input.s3_input_definition.key #=> String
1312
+ # resp.input.s3_input_definition.bucket_owner #=> String
1303
1313
  # resp.input.data_catalog_input_definition.catalog_id #=> String
1304
1314
  # resp.input.data_catalog_input_definition.database_name #=> String
1305
1315
  # resp.input.data_catalog_input_definition.table_name #=> String
1306
1316
  # resp.input.data_catalog_input_definition.temp_directory.bucket #=> String
1307
1317
  # resp.input.data_catalog_input_definition.temp_directory.key #=> String
1318
+ # resp.input.data_catalog_input_definition.temp_directory.bucket_owner #=> String
1308
1319
  # resp.input.database_input_definition.glue_connection_name #=> String
1309
1320
  # resp.input.database_input_definition.database_table_name #=> String
1310
1321
  # resp.input.database_input_definition.temp_directory.bucket #=> String
1311
1322
  # resp.input.database_input_definition.temp_directory.key #=> String
1323
+ # resp.input.database_input_definition.temp_directory.bucket_owner #=> String
1312
1324
  # resp.input.database_input_definition.query_string #=> String
1313
1325
  # resp.input.metadata.source_arn #=> String
1314
1326
  # resp.last_modified_date #=> Time
@@ -1402,6 +1414,7 @@ module Aws::GlueDataBrew
1402
1414
  # resp.outputs[0].partition_columns[0] #=> String
1403
1415
  # resp.outputs[0].location.bucket #=> String
1404
1416
  # resp.outputs[0].location.key #=> String
1417
+ # resp.outputs[0].location.bucket_owner #=> String
1405
1418
  # resp.outputs[0].overwrite #=> Boolean
1406
1419
  # resp.outputs[0].format_options.csv.delimiter #=> String
1407
1420
  # resp.data_catalog_outputs #=> Array
@@ -1410,14 +1423,17 @@ module Aws::GlueDataBrew
1410
1423
  # resp.data_catalog_outputs[0].table_name #=> String
1411
1424
  # resp.data_catalog_outputs[0].s3_options.location.bucket #=> String
1412
1425
  # resp.data_catalog_outputs[0].s3_options.location.key #=> String
1426
+ # resp.data_catalog_outputs[0].s3_options.location.bucket_owner #=> String
1413
1427
  # resp.data_catalog_outputs[0].database_options.temp_directory.bucket #=> String
1414
1428
  # resp.data_catalog_outputs[0].database_options.temp_directory.key #=> String
1429
+ # resp.data_catalog_outputs[0].database_options.temp_directory.bucket_owner #=> String
1415
1430
  # resp.data_catalog_outputs[0].database_options.table_name #=> String
1416
1431
  # resp.data_catalog_outputs[0].overwrite #=> Boolean
1417
1432
  # resp.database_outputs #=> Array
1418
1433
  # resp.database_outputs[0].glue_connection_name #=> String
1419
1434
  # resp.database_outputs[0].database_options.temp_directory.bucket #=> String
1420
1435
  # resp.database_outputs[0].database_options.temp_directory.key #=> String
1436
+ # resp.database_outputs[0].database_options.temp_directory.bucket_owner #=> String
1421
1437
  # resp.database_outputs[0].database_options.table_name #=> String
1422
1438
  # resp.database_outputs[0].database_output_mode #=> String, one of "NEW_TABLE"
1423
1439
  # resp.project_name #=> String
@@ -1550,6 +1566,7 @@ module Aws::GlueDataBrew
1550
1566
  # resp.outputs[0].partition_columns[0] #=> String
1551
1567
  # resp.outputs[0].location.bucket #=> String
1552
1568
  # resp.outputs[0].location.key #=> String
1569
+ # resp.outputs[0].location.bucket_owner #=> String
1553
1570
  # resp.outputs[0].overwrite #=> Boolean
1554
1571
  # resp.outputs[0].format_options.csv.delimiter #=> String
1555
1572
  # resp.data_catalog_outputs #=> Array
@@ -1558,14 +1575,17 @@ module Aws::GlueDataBrew
1558
1575
  # resp.data_catalog_outputs[0].table_name #=> String
1559
1576
  # resp.data_catalog_outputs[0].s3_options.location.bucket #=> String
1560
1577
  # resp.data_catalog_outputs[0].s3_options.location.key #=> String
1578
+ # resp.data_catalog_outputs[0].s3_options.location.bucket_owner #=> String
1561
1579
  # resp.data_catalog_outputs[0].database_options.temp_directory.bucket #=> String
1562
1580
  # resp.data_catalog_outputs[0].database_options.temp_directory.key #=> String
1581
+ # resp.data_catalog_outputs[0].database_options.temp_directory.bucket_owner #=> String
1563
1582
  # resp.data_catalog_outputs[0].database_options.table_name #=> String
1564
1583
  # resp.data_catalog_outputs[0].overwrite #=> Boolean
1565
1584
  # resp.database_outputs #=> Array
1566
1585
  # resp.database_outputs[0].glue_connection_name #=> String
1567
1586
  # resp.database_outputs[0].database_options.temp_directory.bucket #=> String
1568
1587
  # resp.database_outputs[0].database_options.temp_directory.key #=> String
1588
+ # resp.database_outputs[0].database_options.temp_directory.bucket_owner #=> String
1569
1589
  # resp.database_outputs[0].database_options.table_name #=> String
1570
1590
  # resp.database_outputs[0].database_output_mode #=> String, one of "NEW_TABLE"
1571
1591
  # resp.recipe_reference.name #=> String
@@ -1851,15 +1871,18 @@ module Aws::GlueDataBrew
1851
1871
  # resp.datasets[0].format_options.csv.header_row #=> Boolean
1852
1872
  # resp.datasets[0].input.s3_input_definition.bucket #=> String
1853
1873
  # resp.datasets[0].input.s3_input_definition.key #=> String
1874
+ # resp.datasets[0].input.s3_input_definition.bucket_owner #=> String
1854
1875
  # resp.datasets[0].input.data_catalog_input_definition.catalog_id #=> String
1855
1876
  # resp.datasets[0].input.data_catalog_input_definition.database_name #=> String
1856
1877
  # resp.datasets[0].input.data_catalog_input_definition.table_name #=> String
1857
1878
  # resp.datasets[0].input.data_catalog_input_definition.temp_directory.bucket #=> String
1858
1879
  # resp.datasets[0].input.data_catalog_input_definition.temp_directory.key #=> String
1880
+ # resp.datasets[0].input.data_catalog_input_definition.temp_directory.bucket_owner #=> String
1859
1881
  # resp.datasets[0].input.database_input_definition.glue_connection_name #=> String
1860
1882
  # resp.datasets[0].input.database_input_definition.database_table_name #=> String
1861
1883
  # resp.datasets[0].input.database_input_definition.temp_directory.bucket #=> String
1862
1884
  # resp.datasets[0].input.database_input_definition.temp_directory.key #=> String
1885
+ # resp.datasets[0].input.database_input_definition.temp_directory.bucket_owner #=> String
1863
1886
  # resp.datasets[0].input.database_input_definition.query_string #=> String
1864
1887
  # resp.datasets[0].input.metadata.source_arn #=> String
1865
1888
  # resp.datasets[0].last_modified_date #=> Time
@@ -1942,6 +1965,7 @@ module Aws::GlueDataBrew
1942
1965
  # resp.job_runs[0].outputs[0].partition_columns[0] #=> String
1943
1966
  # resp.job_runs[0].outputs[0].location.bucket #=> String
1944
1967
  # resp.job_runs[0].outputs[0].location.key #=> String
1968
+ # resp.job_runs[0].outputs[0].location.bucket_owner #=> String
1945
1969
  # resp.job_runs[0].outputs[0].overwrite #=> Boolean
1946
1970
  # resp.job_runs[0].outputs[0].format_options.csv.delimiter #=> String
1947
1971
  # resp.job_runs[0].data_catalog_outputs #=> Array
@@ -1950,14 +1974,17 @@ module Aws::GlueDataBrew
1950
1974
  # resp.job_runs[0].data_catalog_outputs[0].table_name #=> String
1951
1975
  # resp.job_runs[0].data_catalog_outputs[0].s3_options.location.bucket #=> String
1952
1976
  # resp.job_runs[0].data_catalog_outputs[0].s3_options.location.key #=> String
1977
+ # resp.job_runs[0].data_catalog_outputs[0].s3_options.location.bucket_owner #=> String
1953
1978
  # resp.job_runs[0].data_catalog_outputs[0].database_options.temp_directory.bucket #=> String
1954
1979
  # resp.job_runs[0].data_catalog_outputs[0].database_options.temp_directory.key #=> String
1980
+ # resp.job_runs[0].data_catalog_outputs[0].database_options.temp_directory.bucket_owner #=> String
1955
1981
  # resp.job_runs[0].data_catalog_outputs[0].database_options.table_name #=> String
1956
1982
  # resp.job_runs[0].data_catalog_outputs[0].overwrite #=> Boolean
1957
1983
  # resp.job_runs[0].database_outputs #=> Array
1958
1984
  # resp.job_runs[0].database_outputs[0].glue_connection_name #=> String
1959
1985
  # resp.job_runs[0].database_outputs[0].database_options.temp_directory.bucket #=> String
1960
1986
  # resp.job_runs[0].database_outputs[0].database_options.temp_directory.key #=> String
1987
+ # resp.job_runs[0].database_outputs[0].database_options.temp_directory.bucket_owner #=> String
1961
1988
  # resp.job_runs[0].database_outputs[0].database_options.table_name #=> String
1962
1989
  # resp.job_runs[0].database_outputs[0].database_output_mode #=> String, one of "NEW_TABLE"
1963
1990
  # resp.job_runs[0].recipe_reference.name #=> String
@@ -2038,6 +2065,7 @@ module Aws::GlueDataBrew
2038
2065
  # resp.jobs[0].outputs[0].partition_columns[0] #=> String
2039
2066
  # resp.jobs[0].outputs[0].location.bucket #=> String
2040
2067
  # resp.jobs[0].outputs[0].location.key #=> String
2068
+ # resp.jobs[0].outputs[0].location.bucket_owner #=> String
2041
2069
  # resp.jobs[0].outputs[0].overwrite #=> Boolean
2042
2070
  # resp.jobs[0].outputs[0].format_options.csv.delimiter #=> String
2043
2071
  # resp.jobs[0].data_catalog_outputs #=> Array
@@ -2046,14 +2074,17 @@ module Aws::GlueDataBrew
2046
2074
  # resp.jobs[0].data_catalog_outputs[0].table_name #=> String
2047
2075
  # resp.jobs[0].data_catalog_outputs[0].s3_options.location.bucket #=> String
2048
2076
  # resp.jobs[0].data_catalog_outputs[0].s3_options.location.key #=> String
2077
+ # resp.jobs[0].data_catalog_outputs[0].s3_options.location.bucket_owner #=> String
2049
2078
  # resp.jobs[0].data_catalog_outputs[0].database_options.temp_directory.bucket #=> String
2050
2079
  # resp.jobs[0].data_catalog_outputs[0].database_options.temp_directory.key #=> String
2080
+ # resp.jobs[0].data_catalog_outputs[0].database_options.temp_directory.bucket_owner #=> String
2051
2081
  # resp.jobs[0].data_catalog_outputs[0].database_options.table_name #=> String
2052
2082
  # resp.jobs[0].data_catalog_outputs[0].overwrite #=> Boolean
2053
2083
  # resp.jobs[0].database_outputs #=> Array
2054
2084
  # resp.jobs[0].database_outputs[0].glue_connection_name #=> String
2055
2085
  # resp.jobs[0].database_outputs[0].database_options.temp_directory.bucket #=> String
2056
2086
  # resp.jobs[0].database_outputs[0].database_options.temp_directory.key #=> String
2087
+ # resp.jobs[0].database_outputs[0].database_options.temp_directory.bucket_owner #=> String
2057
2088
  # resp.jobs[0].database_outputs[0].database_options.table_name #=> String
2058
2089
  # resp.jobs[0].database_outputs[0].database_output_mode #=> String, one of "NEW_TABLE"
2059
2090
  # resp.jobs[0].project_name #=> String
@@ -2716,6 +2747,7 @@ module Aws::GlueDataBrew
2716
2747
  # s3_input_definition: {
2717
2748
  # bucket: "Bucket", # required
2718
2749
  # key: "Key",
2750
+ # bucket_owner: "BucketOwner",
2719
2751
  # },
2720
2752
  # data_catalog_input_definition: {
2721
2753
  # catalog_id: "CatalogId",
@@ -2724,6 +2756,7 @@ module Aws::GlueDataBrew
2724
2756
  # temp_directory: {
2725
2757
  # bucket: "Bucket", # required
2726
2758
  # key: "Key",
2759
+ # bucket_owner: "BucketOwner",
2727
2760
  # },
2728
2761
  # },
2729
2762
  # database_input_definition: {
@@ -2732,6 +2765,7 @@ module Aws::GlueDataBrew
2732
2765
  # temp_directory: {
2733
2766
  # bucket: "Bucket", # required
2734
2767
  # key: "Key",
2768
+ # bucket_owner: "BucketOwner",
2735
2769
  # },
2736
2770
  # query_string: "QueryString",
2737
2771
  # },
@@ -2818,8 +2852,9 @@ module Aws::GlueDataBrew
2818
2852
  # The maximum number of times to retry the job after a job run fails.
2819
2853
  #
2820
2854
  # @option params [required, Types::S3Location] :output_location
2821
- # Represents an Amazon S3 location (bucket name and object key) where
2822
- # DataBrew can read input data, or write output from a job.
2855
+ # Represents an Amazon S3 location (bucket name, bucket owner, and
2856
+ # object key) where DataBrew can read input data, or write output from a
2857
+ # job.
2823
2858
  #
2824
2859
  # @option params [Array<Types::ValidationConfiguration>] :validation_configurations
2825
2860
  # List of validation configurations that are applied to the profile job.
@@ -2903,6 +2938,7 @@ module Aws::GlueDataBrew
2903
2938
  # output_location: { # required
2904
2939
  # bucket: "Bucket", # required
2905
2940
  # key: "Key",
2941
+ # bucket_owner: "BucketOwner",
2906
2942
  # },
2907
2943
  # validation_configurations: [
2908
2944
  # {
@@ -3095,6 +3131,7 @@ module Aws::GlueDataBrew
3095
3131
  # location: { # required
3096
3132
  # bucket: "Bucket", # required
3097
3133
  # key: "Key",
3134
+ # bucket_owner: "BucketOwner",
3098
3135
  # },
3099
3136
  # overwrite: false,
3100
3137
  # format_options: {
@@ -3113,12 +3150,14 @@ module Aws::GlueDataBrew
3113
3150
  # location: { # required
3114
3151
  # bucket: "Bucket", # required
3115
3152
  # key: "Key",
3153
+ # bucket_owner: "BucketOwner",
3116
3154
  # },
3117
3155
  # },
3118
3156
  # database_options: {
3119
3157
  # temp_directory: {
3120
3158
  # bucket: "Bucket", # required
3121
3159
  # key: "Key",
3160
+ # bucket_owner: "BucketOwner",
3122
3161
  # },
3123
3162
  # table_name: "DatabaseTableName", # required
3124
3163
  # },
@@ -3132,6 +3171,7 @@ module Aws::GlueDataBrew
3132
3171
  # temp_directory: {
3133
3172
  # bucket: "Bucket", # required
3134
3173
  # key: "Key",
3174
+ # bucket_owner: "BucketOwner",
3135
3175
  # },
3136
3176
  # table_name: "DatabaseTableName", # required
3137
3177
  # },
@@ -3267,7 +3307,7 @@ module Aws::GlueDataBrew
3267
3307
  params: params,
3268
3308
  config: config)
3269
3309
  context[:gem_name] = 'aws-sdk-gluedatabrew'
3270
- context[:gem_version] = '1.18.0'
3310
+ context[:gem_version] = '1.19.0'
3271
3311
  Seahorse::Client::Request.new(handlers, context)
3272
3312
  end
3273
3313
 
@@ -25,6 +25,7 @@ module Aws::GlueDataBrew
25
25
  BatchDeleteRecipeVersionRequest = Shapes::StructureShape.new(name: 'BatchDeleteRecipeVersionRequest')
26
26
  BatchDeleteRecipeVersionResponse = Shapes::StructureShape.new(name: 'BatchDeleteRecipeVersionResponse')
27
27
  Bucket = Shapes::StringShape.new(name: 'Bucket')
28
+ BucketOwner = Shapes::StringShape.new(name: 'BucketOwner')
28
29
  CatalogId = Shapes::StringShape.new(name: 'CatalogId')
29
30
  ClientSessionId = Shapes::StringShape.new(name: 'ClientSessionId')
30
31
  ColumnName = Shapes::StringShape.new(name: 'ColumnName')
@@ -960,6 +961,7 @@ module Aws::GlueDataBrew
960
961
 
961
962
  S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: Bucket, required: true, location_name: "Bucket"))
962
963
  S3Location.add_member(:key, Shapes::ShapeRef.new(shape: Key, location_name: "Key"))
964
+ S3Location.add_member(:bucket_owner, Shapes::ShapeRef.new(shape: BucketOwner, location_name: "BucketOwner"))
963
965
  S3Location.struct_class = Types::S3Location
964
966
 
965
967
  S3TableOutputOptions.add_member(:location, Shapes::ShapeRef.new(shape: S3Location, required: true, location_name: "Location"))
@@ -252,6 +252,7 @@ module Aws::GlueDataBrew
252
252
  # s3_input_definition: {
253
253
  # bucket: "Bucket", # required
254
254
  # key: "Key",
255
+ # bucket_owner: "BucketOwner",
255
256
  # },
256
257
  # data_catalog_input_definition: {
257
258
  # catalog_id: "CatalogId",
@@ -260,6 +261,7 @@ module Aws::GlueDataBrew
260
261
  # temp_directory: {
261
262
  # bucket: "Bucket", # required
262
263
  # key: "Key",
264
+ # bucket_owner: "BucketOwner",
263
265
  # },
264
266
  # },
265
267
  # database_input_definition: {
@@ -268,6 +270,7 @@ module Aws::GlueDataBrew
268
270
  # temp_directory: {
269
271
  # bucket: "Bucket", # required
270
272
  # key: "Key",
273
+ # bucket_owner: "BucketOwner",
271
274
  # },
272
275
  # query_string: "QueryString",
273
276
  # },
@@ -379,6 +382,7 @@ module Aws::GlueDataBrew
379
382
  # output_location: { # required
380
383
  # bucket: "Bucket", # required
381
384
  # key: "Key",
385
+ # bucket_owner: "BucketOwner",
382
386
  # },
383
387
  # configuration: {
384
388
  # dataset_statistics_configuration: {
@@ -484,8 +488,9 @@ module Aws::GlueDataBrew
484
488
  # @return [Integer]
485
489
  #
486
490
  # @!attribute [rw] output_location
487
- # Represents an Amazon S3 location (bucket name and object key) where
488
- # DataBrew can read input data, or write output from a job.
491
+ # Represents an Amazon S3 location (bucket name, bucket owner, and
492
+ # object key) where DataBrew can read input data, or write output from
493
+ # a job.
489
494
  # @return [Types::S3Location]
490
495
  #
491
496
  # @!attribute [rw] configuration
@@ -643,6 +648,7 @@ module Aws::GlueDataBrew
643
648
  # location: { # required
644
649
  # bucket: "Bucket", # required
645
650
  # key: "Key",
651
+ # bucket_owner: "BucketOwner",
646
652
  # },
647
653
  # overwrite: false,
648
654
  # format_options: {
@@ -661,12 +667,14 @@ module Aws::GlueDataBrew
661
667
  # location: { # required
662
668
  # bucket: "Bucket", # required
663
669
  # key: "Key",
670
+ # bucket_owner: "BucketOwner",
664
671
  # },
665
672
  # },
666
673
  # database_options: {
667
674
  # temp_directory: {
668
675
  # bucket: "Bucket", # required
669
676
  # key: "Key",
677
+ # bucket_owner: "BucketOwner",
670
678
  # },
671
679
  # table_name: "DatabaseTableName", # required
672
680
  # },
@@ -680,6 +688,7 @@ module Aws::GlueDataBrew
680
688
  # temp_directory: {
681
689
  # bucket: "Bucket", # required
682
690
  # key: "Key",
691
+ # bucket_owner: "BucketOwner",
683
692
  # },
684
693
  # table_name: "DatabaseTableName", # required
685
694
  # },
@@ -1083,6 +1092,7 @@ module Aws::GlueDataBrew
1083
1092
  # temp_directory: {
1084
1093
  # bucket: "Bucket", # required
1085
1094
  # key: "Key",
1095
+ # bucket_owner: "BucketOwner",
1086
1096
  # },
1087
1097
  # }
1088
1098
  #
@@ -1130,12 +1140,14 @@ module Aws::GlueDataBrew
1130
1140
  # location: { # required
1131
1141
  # bucket: "Bucket", # required
1132
1142
  # key: "Key",
1143
+ # bucket_owner: "BucketOwner",
1133
1144
  # },
1134
1145
  # },
1135
1146
  # database_options: {
1136
1147
  # temp_directory: {
1137
1148
  # bucket: "Bucket", # required
1138
1149
  # key: "Key",
1150
+ # bucket_owner: "BucketOwner",
1139
1151
  # },
1140
1152
  # table_name: "DatabaseTableName", # required
1141
1153
  # },
@@ -1195,6 +1207,7 @@ module Aws::GlueDataBrew
1195
1207
  # temp_directory: {
1196
1208
  # bucket: "Bucket", # required
1197
1209
  # key: "Key",
1210
+ # bucket_owner: "BucketOwner",
1198
1211
  # },
1199
1212
  # query_string: "QueryString",
1200
1213
  # }
@@ -1209,8 +1222,9 @@ module Aws::GlueDataBrew
1209
1222
  # @return [String]
1210
1223
  #
1211
1224
  # @!attribute [rw] temp_directory
1212
- # Represents an Amazon S3 location (bucket name and object key) where
1213
- # DataBrew can read input data, or write output from a job.
1225
+ # Represents an Amazon S3 location (bucket name, bucket owner, and
1226
+ # object key) where DataBrew can read input data, or write output from
1227
+ # a job.
1214
1228
  # @return [Types::S3Location]
1215
1229
  #
1216
1230
  # @!attribute [rw] query_string
@@ -1241,6 +1255,7 @@ module Aws::GlueDataBrew
1241
1255
  # temp_directory: {
1242
1256
  # bucket: "Bucket", # required
1243
1257
  # key: "Key",
1258
+ # bucket_owner: "BucketOwner",
1244
1259
  # },
1245
1260
  # table_name: "DatabaseTableName", # required
1246
1261
  # },
@@ -1282,6 +1297,7 @@ module Aws::GlueDataBrew
1282
1297
  # temp_directory: {
1283
1298
  # bucket: "Bucket", # required
1284
1299
  # key: "Key",
1300
+ # bucket_owner: "BucketOwner",
1285
1301
  # },
1286
1302
  # table_name: "DatabaseTableName", # required
1287
1303
  # }
@@ -2697,6 +2713,7 @@ module Aws::GlueDataBrew
2697
2713
  # s3_input_definition: {
2698
2714
  # bucket: "Bucket", # required
2699
2715
  # key: "Key",
2716
+ # bucket_owner: "BucketOwner",
2700
2717
  # },
2701
2718
  # data_catalog_input_definition: {
2702
2719
  # catalog_id: "CatalogId",
@@ -2705,6 +2722,7 @@ module Aws::GlueDataBrew
2705
2722
  # temp_directory: {
2706
2723
  # bucket: "Bucket", # required
2707
2724
  # key: "Key",
2725
+ # bucket_owner: "BucketOwner",
2708
2726
  # },
2709
2727
  # },
2710
2728
  # database_input_definition: {
@@ -2713,6 +2731,7 @@ module Aws::GlueDataBrew
2713
2731
  # temp_directory: {
2714
2732
  # bucket: "Bucket", # required
2715
2733
  # key: "Key",
2734
+ # bucket_owner: "BucketOwner",
2716
2735
  # },
2717
2736
  # query_string: "QueryString",
2718
2737
  # },
@@ -3566,6 +3585,7 @@ module Aws::GlueDataBrew
3566
3585
  # location: { # required
3567
3586
  # bucket: "Bucket", # required
3568
3587
  # key: "Key",
3588
+ # bucket_owner: "BucketOwner",
3569
3589
  # },
3570
3590
  # overwrite: false,
3571
3591
  # format_options: {
@@ -4202,6 +4222,12 @@ module Aws::GlueDataBrew
4202
4222
  # ColumnSelectors has been defined, then there should be no columnn
4203
4223
  # reference in the left side of a condition, for example, `is_between
4204
4224
  # :val1 and :val2`.
4225
+ #
4226
+ # For more information, see [Available checks][1]
4227
+ #
4228
+ #
4229
+ #
4230
+ # [1]: https://docs.aws.amazon.com/databrew/latest/dg/profile.data-quality-available-checks.html
4205
4231
  # @return [String]
4206
4232
  #
4207
4233
  # @!attribute [rw] substitution_map
@@ -4304,8 +4330,9 @@ module Aws::GlueDataBrew
4304
4330
  include Aws::Structure
4305
4331
  end
4306
4332
 
4307
- # Represents an Amazon S3 location (bucket name and object key) where
4308
- # DataBrew can read input data, or write output from a job.
4333
+ # Represents an Amazon S3 location (bucket name, bucket owner, and
4334
+ # object key) where DataBrew can read input data, or write output from a
4335
+ # job.
4309
4336
  #
4310
4337
  # @note When making an API call, you may pass S3Location
4311
4338
  # data as a hash:
@@ -4313,6 +4340,7 @@ module Aws::GlueDataBrew
4313
4340
  # {
4314
4341
  # bucket: "Bucket", # required
4315
4342
  # key: "Key",
4343
+ # bucket_owner: "BucketOwner",
4316
4344
  # }
4317
4345
  #
4318
4346
  # @!attribute [rw] bucket
@@ -4323,11 +4351,16 @@ module Aws::GlueDataBrew
4323
4351
  # The unique name of the object in the bucket.
4324
4352
  # @return [String]
4325
4353
  #
4354
+ # @!attribute [rw] bucket_owner
4355
+ # The Amazon Web Services account ID of the bucket owner.
4356
+ # @return [String]
4357
+ #
4326
4358
  # @see http://docs.aws.amazon.com/goto/WebAPI/databrew-2017-07-25/S3Location AWS API Documentation
4327
4359
  #
4328
4360
  class S3Location < Struct.new(
4329
4361
  :bucket,
4330
- :key)
4362
+ :key,
4363
+ :bucket_owner)
4331
4364
  SENSITIVE = []
4332
4365
  include Aws::Structure
4333
4366
  end
@@ -4342,6 +4375,7 @@ module Aws::GlueDataBrew
4342
4375
  # location: { # required
4343
4376
  # bucket: "Bucket", # required
4344
4377
  # key: "Key",
4378
+ # bucket_owner: "BucketOwner",
4345
4379
  # },
4346
4380
  # }
4347
4381
  #
@@ -4863,6 +4897,7 @@ module Aws::GlueDataBrew
4863
4897
  # s3_input_definition: {
4864
4898
  # bucket: "Bucket", # required
4865
4899
  # key: "Key",
4900
+ # bucket_owner: "BucketOwner",
4866
4901
  # },
4867
4902
  # data_catalog_input_definition: {
4868
4903
  # catalog_id: "CatalogId",
@@ -4871,6 +4906,7 @@ module Aws::GlueDataBrew
4871
4906
  # temp_directory: {
4872
4907
  # bucket: "Bucket", # required
4873
4908
  # key: "Key",
4909
+ # bucket_owner: "BucketOwner",
4874
4910
  # },
4875
4911
  # },
4876
4912
  # database_input_definition: {
@@ -4879,6 +4915,7 @@ module Aws::GlueDataBrew
4879
4915
  # temp_directory: {
4880
4916
  # bucket: "Bucket", # required
4881
4917
  # key: "Key",
4918
+ # bucket_owner: "BucketOwner",
4882
4919
  # },
4883
4920
  # query_string: "QueryString",
4884
4921
  # },
@@ -5028,6 +5065,7 @@ module Aws::GlueDataBrew
5028
5065
  # output_location: { # required
5029
5066
  # bucket: "Bucket", # required
5030
5067
  # key: "Key",
5068
+ # bucket_owner: "BucketOwner",
5031
5069
  # },
5032
5070
  # validation_configurations: [
5033
5071
  # {
@@ -5083,8 +5121,9 @@ module Aws::GlueDataBrew
5083
5121
  # @return [Integer]
5084
5122
  #
5085
5123
  # @!attribute [rw] output_location
5086
- # Represents an Amazon S3 location (bucket name and object key) where
5087
- # DataBrew can read input data, or write output from a job.
5124
+ # Represents an Amazon S3 location (bucket name, bucket owner, and
5125
+ # object key) where DataBrew can read input data, or write output from
5126
+ # a job.
5088
5127
  # @return [Types::S3Location]
5089
5128
  #
5090
5129
  # @!attribute [rw] validation_configurations
@@ -5212,6 +5251,7 @@ module Aws::GlueDataBrew
5212
5251
  # location: { # required
5213
5252
  # bucket: "Bucket", # required
5214
5253
  # key: "Key",
5254
+ # bucket_owner: "BucketOwner",
5215
5255
  # },
5216
5256
  # overwrite: false,
5217
5257
  # format_options: {
@@ -5230,12 +5270,14 @@ module Aws::GlueDataBrew
5230
5270
  # location: { # required
5231
5271
  # bucket: "Bucket", # required
5232
5272
  # key: "Key",
5273
+ # bucket_owner: "BucketOwner",
5233
5274
  # },
5234
5275
  # },
5235
5276
  # database_options: {
5236
5277
  # temp_directory: {
5237
5278
  # bucket: "Bucket", # required
5238
5279
  # key: "Key",
5280
+ # bucket_owner: "BucketOwner",
5239
5281
  # },
5240
5282
  # table_name: "DatabaseTableName", # required
5241
5283
  # },
@@ -5249,6 +5291,7 @@ module Aws::GlueDataBrew
5249
5291
  # temp_directory: {
5250
5292
  # bucket: "Bucket", # required
5251
5293
  # key: "Key",
5294
+ # bucket_owner: "BucketOwner",
5252
5295
  # },
5253
5296
  # table_name: "DatabaseTableName", # required
5254
5297
  # },
@@ -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.18.0'
51
+ GEM_VERSION = '1.19.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-gluedatabrew
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core