aws-sdk-glue 1.267.0 → 1.269.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: b4f84f06eef29b1e16d3d43af2019bee9f6dabf558c06d5ef618f4f6b25163ac
4
- data.tar.gz: 805063737694f840b298a3f775d025176d1c7d07065b1aaac2ee526efe1051c6
3
+ metadata.gz: 0be39b344efbb4870425779365c1cdc9427fe199a4ae2d32c5bdea13bb94eb3e
4
+ data.tar.gz: 3441e7d1307ecc5da8756ea97f1990fc2e11b4af158e3b8075c9df194aafaf66
5
5
  SHA512:
6
- metadata.gz: 4265a8049cc7643a5b823af571aeee8bd964f7bebbca79e12a1105dd5350d672d64b04c7c602ed2f24be57dcf33802f201045088bc039f5ce5e3c216fa3fabd1
7
- data.tar.gz: 7098053d739242261204fdb41caa830f1ae11b80b649810e8a4e85af0696764930597be5d91a4019adb4fec5bc3edb68420f2217c370d04110ac62c056225b62
6
+ metadata.gz: f6322b25e8352683417722f12a2b9701ff9c886cc34ef630b350459224062f22e4b59cb76fdeceb143464e90e67a5c01ef970d90633cbb48bd2ef040a7c7eccc
7
+ data.tar.gz: 55b1e31f03956ce804d577cc14a5d6f221c823b6face7c225298813fe8d699951eba725047a62095779e0761cd87a2104df010875245c73d6add2fb38697f6f3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.269.0 (2026-08-12)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for materialized views APIs.
8
+
9
+ 1.268.0 (2026-08-05)
10
+ ------------------
11
+
12
+ * Feature - Added the PutDataCatalogExportConfiguration to export Glue Data Catalog metadata to systems tables stored in S3 Tables.
13
+
4
14
  1.267.0 (2026-07-29)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.267.0
1
+ 1.269.0
@@ -8493,6 +8493,38 @@ module Aws::Glue
8493
8493
  req.send_request(options)
8494
8494
  end
8495
8495
 
8496
+ # Retrieves the current export configuration for the Glue Data Catalog.
8497
+ # The export configuration controls whether catalog metadata is exported
8498
+ # to S3 Tables.
8499
+ #
8500
+ # @return [Types::GetDataCatalogExportConfigurationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8501
+ #
8502
+ # * {Types::GetDataCatalogExportConfigurationOutput#export_setting #export_setting} => String
8503
+ # * {Types::GetDataCatalogExportConfigurationOutput#status #status} => String
8504
+ # * {Types::GetDataCatalogExportConfigurationOutput#encryption_configuration #encryption_configuration} => Types::ExportEncryptionConfiguration
8505
+ # * {Types::GetDataCatalogExportConfigurationOutput#s3_table_bucket_arn #s3_table_bucket_arn} => String
8506
+ # * {Types::GetDataCatalogExportConfigurationOutput#created_at #created_at} => Time
8507
+ # * {Types::GetDataCatalogExportConfigurationOutput#updated_at #updated_at} => Time
8508
+ #
8509
+ # @example Response structure
8510
+ #
8511
+ # resp.export_setting #=> String, one of "ENABLED", "DISABLED"
8512
+ # resp.status #=> String, one of "ENABLING", "ENABLED", "DISABLING", "DISABLED", "FAILED"
8513
+ # resp.encryption_configuration.sse_algorithm #=> String
8514
+ # resp.encryption_configuration.kms_key_arn #=> String
8515
+ # resp.s3_table_bucket_arn #=> String
8516
+ # resp.created_at #=> Time
8517
+ # resp.updated_at #=> Time
8518
+ #
8519
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataCatalogExportConfiguration AWS API Documentation
8520
+ #
8521
+ # @overload get_data_catalog_export_configuration(params = {})
8522
+ # @param [Hash] params ({})
8523
+ def get_data_catalog_export_configuration(params = {}, options = {})
8524
+ req = build_request(:get_data_catalog_export_configuration, params)
8525
+ req.send_request(options)
8526
+ end
8527
+
8496
8528
  # Retrieve the training status of the model along with more information
8497
8529
  # (CompletedOn, StartedOn, FailureReason).
8498
8530
  #
@@ -14972,7 +15004,7 @@ module Aws::Glue
14972
15004
  # The database where the table resides.
14973
15005
  #
14974
15006
  # @option params [String] :table_name
14975
- # The name of the table for which statistics is generated.
15007
+ # The name of the materialized view.
14976
15008
  #
14977
15009
  # @option params [Integer] :max_results
14978
15010
  # The maximum size of the response.
@@ -15847,6 +15879,57 @@ module Aws::Glue
15847
15879
  req.send_request(options)
15848
15880
  end
15849
15881
 
15882
+ # Creates or updates the export configuration for the Glue Data Catalog.
15883
+ # Use this operation to enable or disable the export of catalog metadata
15884
+ # to S3 Tables.
15885
+ #
15886
+ # @option params [required, String] :export_setting
15887
+ # The export setting for the data catalog. Specify `ENABLED` to start
15888
+ # exporting catalog metadata to S3 Tables, or `DISABLED` to stop
15889
+ # exporting. This field is required.
15890
+ #
15891
+ # @option params [Types::ExportEncryptionConfiguration] :encryption_configuration
15892
+ # The encryption configuration for the exported data. If not specified,
15893
+ # the default encryption settings are used.
15894
+ #
15895
+ # @option params [String] :client_token
15896
+ # A unique, case-sensitive identifier that you provide to ensure the
15897
+ # idempotency of the request.
15898
+ #
15899
+ # **A suitable default value is auto-generated.** You should normally
15900
+ # not need to pass this option.**
15901
+ #
15902
+ # @return [Types::PutDataCatalogExportConfigurationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
15903
+ #
15904
+ # * {Types::PutDataCatalogExportConfigurationOutput#export_setting #export_setting} => String
15905
+ # * {Types::PutDataCatalogExportConfigurationOutput#encryption_configuration #encryption_configuration} => Types::ExportEncryptionConfiguration
15906
+ #
15907
+ # @example Request syntax with placeholder values
15908
+ #
15909
+ # resp = client.put_data_catalog_export_configuration({
15910
+ # export_setting: "ENABLED", # required, accepts ENABLED, DISABLED
15911
+ # encryption_configuration: {
15912
+ # sse_algorithm: "SseAlgorithm",
15913
+ # kms_key_arn: "KmsKeyArnString",
15914
+ # },
15915
+ # client_token: "HashString",
15916
+ # })
15917
+ #
15918
+ # @example Response structure
15919
+ #
15920
+ # resp.export_setting #=> String, one of "ENABLED", "DISABLED"
15921
+ # resp.encryption_configuration.sse_algorithm #=> String
15922
+ # resp.encryption_configuration.kms_key_arn #=> String
15923
+ #
15924
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/PutDataCatalogExportConfiguration AWS API Documentation
15925
+ #
15926
+ # @overload put_data_catalog_export_configuration(params = {})
15927
+ # @param [Hash] params ({})
15928
+ def put_data_catalog_export_configuration(params = {}, options = {})
15929
+ req = build_request(:put_data_catalog_export_configuration, params)
15930
+ req.send_request(options)
15931
+ end
15932
+
15850
15933
  # Annotate all datapoints for a Profile.
15851
15934
  #
15852
15935
  # @option params [required, String] :profile_id
@@ -18180,8 +18263,8 @@ module Aws::Glue
18180
18263
  req.send_request(options)
18181
18264
  end
18182
18265
 
18183
- # Starts a materialized view refresh task run, for a specified table and
18184
- # columns.
18266
+ # Starts a materialized view refresh task run for a specified
18267
+ # materialized view.
18185
18268
  #
18186
18269
  # @option params [required, String] :catalog_id
18187
18270
  # The ID of the Data Catalog where the table reside. If none is
@@ -18191,8 +18274,7 @@ module Aws::Glue
18191
18274
  # The name of the database where the table resides.
18192
18275
  #
18193
18276
  # @option params [required, String] :table_name
18194
- # The name of the table to generate run the materialized view refresh
18195
- # task.
18277
+ # The name of the materialized view to run the refresh task for.
18196
18278
  #
18197
18279
  # @option params [Boolean] :full_refresh
18198
18280
  # Specifies whether this is a full refresh of the task run.
@@ -18393,8 +18475,8 @@ module Aws::Glue
18393
18475
  req.send_request(options)
18394
18476
  end
18395
18477
 
18396
- # Stops a materialized view refresh task run, for a specified table and
18397
- # columns.
18478
+ # Stops a materialized view refresh task run for a specified
18479
+ # materialized view.
18398
18480
  #
18399
18481
  # @option params [required, String] :catalog_id
18400
18482
  # The ID of the Data Catalog where the table reside. If none is
@@ -18404,7 +18486,7 @@ module Aws::Glue
18404
18486
  # The name of the database where the table resides.
18405
18487
  #
18406
18488
  # @option params [required, String] :table_name
18407
- # The name of the table to generate statistics.
18489
+ # The name of the materialized view.
18408
18490
  #
18409
18491
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
18410
18492
  #
@@ -20986,7 +21068,7 @@ module Aws::Glue
20986
21068
  tracer: tracer
20987
21069
  )
20988
21070
  context[:gem_name] = 'aws-sdk-glue'
20989
- context[:gem_version] = '1.267.0'
21071
+ context[:gem_version] = '1.269.0'
20990
21072
  Seahorse::Client::Request.new(handlers, context)
20991
21073
  end
20992
21074
 
@@ -667,7 +667,10 @@ module Aws::Glue
667
667
  ExecutionStatus = Shapes::StringShape.new(name: 'ExecutionStatus')
668
668
  ExecutionTime = Shapes::IntegerShape.new(name: 'ExecutionTime')
669
669
  ExistCondition = Shapes::StringShape.new(name: 'ExistCondition')
670
+ ExportEncryptionConfiguration = Shapes::StructureShape.new(name: 'ExportEncryptionConfiguration')
670
671
  ExportLabelsTaskRunProperties = Shapes::StructureShape.new(name: 'ExportLabelsTaskRunProperties')
672
+ ExportSetting = Shapes::StringShape.new(name: 'ExportSetting')
673
+ ExportStatus = Shapes::StringShape.new(name: 'ExportStatus')
671
674
  ExtendedString = Shapes::StringShape.new(name: 'ExtendedString')
672
675
  ExtractedParameter = Shapes::StructureShape.new(name: 'ExtractedParameter')
673
676
  FederatedCatalog = Shapes::StructureShape.new(name: 'FederatedCatalog')
@@ -770,6 +773,8 @@ module Aws::Glue
770
773
  GetDashboardUrlResponse = Shapes::StructureShape.new(name: 'GetDashboardUrlResponse')
771
774
  GetDataCatalogEncryptionSettingsRequest = Shapes::StructureShape.new(name: 'GetDataCatalogEncryptionSettingsRequest')
772
775
  GetDataCatalogEncryptionSettingsResponse = Shapes::StructureShape.new(name: 'GetDataCatalogEncryptionSettingsResponse')
776
+ GetDataCatalogExportConfigurationInput = Shapes::StructureShape.new(name: 'GetDataCatalogExportConfigurationInput')
777
+ GetDataCatalogExportConfigurationOutput = Shapes::StructureShape.new(name: 'GetDataCatalogExportConfigurationOutput')
773
778
  GetDataQualityModelRequest = Shapes::StructureShape.new(name: 'GetDataQualityModelRequest')
774
779
  GetDataQualityModelResponse = Shapes::StructureShape.new(name: 'GetDataQualityModelResponse')
775
780
  GetDataQualityModelResultRequest = Shapes::StructureShape.new(name: 'GetDataQualityModelResultRequest')
@@ -1085,6 +1090,7 @@ module Aws::Glue
1085
1090
  KeyString = Shapes::StringShape.new(name: 'KeyString')
1086
1091
  KinesisStreamingSourceOptions = Shapes::StructureShape.new(name: 'KinesisStreamingSourceOptions')
1087
1092
  KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
1093
+ KmsKeyArnString = Shapes::StringShape.new(name: 'KmsKeyArnString')
1088
1094
  LabelCount = Shapes::IntegerShape.new(name: 'LabelCount')
1089
1095
  LabelingSetGenerationTaskRunProperties = Shapes::StructureShape.new(name: 'LabelingSetGenerationTaskRunProperties')
1090
1096
  Labels = Shapes::MapShape.new(name: 'Labels')
@@ -1361,6 +1367,8 @@ module Aws::Glue
1361
1367
  PutAttachmentResponse = Shapes::StructureShape.new(name: 'PutAttachmentResponse')
1362
1368
  PutDataCatalogEncryptionSettingsRequest = Shapes::StructureShape.new(name: 'PutDataCatalogEncryptionSettingsRequest')
1363
1369
  PutDataCatalogEncryptionSettingsResponse = Shapes::StructureShape.new(name: 'PutDataCatalogEncryptionSettingsResponse')
1370
+ PutDataCatalogExportConfigurationInput = Shapes::StructureShape.new(name: 'PutDataCatalogExportConfigurationInput')
1371
+ PutDataCatalogExportConfigurationOutput = Shapes::StructureShape.new(name: 'PutDataCatalogExportConfigurationOutput')
1364
1372
  PutDataQualityProfileAnnotationRequest = Shapes::StructureShape.new(name: 'PutDataQualityProfileAnnotationRequest')
1365
1373
  PutDataQualityProfileAnnotationResponse = Shapes::StructureShape.new(name: 'PutDataQualityProfileAnnotationResponse')
1366
1374
  PutFormTypeRequest = Shapes::StructureShape.new(name: 'PutFormTypeRequest')
@@ -1467,6 +1475,7 @@ module Aws::Glue
1467
1475
  S3JsonSource = Shapes::StructureShape.new(name: 'S3JsonSource')
1468
1476
  S3ParquetSource = Shapes::StructureShape.new(name: 'S3ParquetSource')
1469
1477
  S3SourceAdditionalOptions = Shapes::StructureShape.new(name: 'S3SourceAdditionalOptions')
1478
+ S3TableBucketArn = Shapes::StringShape.new(name: 'S3TableBucketArn')
1470
1479
  S3Target = Shapes::StructureShape.new(name: 'S3Target')
1471
1480
  S3TargetList = Shapes::ListShape.new(name: 'S3TargetList')
1472
1481
  SampleSizePercentage = Shapes::FloatShape.new(name: 'SampleSizePercentage')
@@ -1569,6 +1578,7 @@ module Aws::Glue
1569
1578
  SqlAlias = Shapes::StructureShape.new(name: 'SqlAlias')
1570
1579
  SqlAliases = Shapes::ListShape.new(name: 'SqlAliases')
1571
1580
  SqlQuery = Shapes::StringShape.new(name: 'SqlQuery')
1581
+ SseAlgorithm = Shapes::StringShape.new(name: 'SseAlgorithm')
1572
1582
  StartBlueprintRunRequest = Shapes::StructureShape.new(name: 'StartBlueprintRunRequest')
1573
1583
  StartBlueprintRunResponse = Shapes::StructureShape.new(name: 'StartBlueprintRunResponse')
1574
1584
  StartColumnStatisticsTaskRunRequest = Shapes::StructureShape.new(name: 'StartColumnStatisticsTaskRunRequest')
@@ -4354,6 +4364,10 @@ module Aws::Glue
4354
4364
  ExecutionProperty.add_member(:max_concurrent_runs, Shapes::ShapeRef.new(shape: MaxConcurrentRuns, location_name: "MaxConcurrentRuns"))
4355
4365
  ExecutionProperty.struct_class = Types::ExecutionProperty
4356
4366
 
4367
+ ExportEncryptionConfiguration.add_member(:sse_algorithm, Shapes::ShapeRef.new(shape: SseAlgorithm, location_name: "SseAlgorithm"))
4368
+ ExportEncryptionConfiguration.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArnString, location_name: "KmsKeyArn"))
4369
+ ExportEncryptionConfiguration.struct_class = Types::ExportEncryptionConfiguration
4370
+
4357
4371
  ExportLabelsTaskRunProperties.add_member(:output_s3_path, Shapes::ShapeRef.new(shape: UriString, location_name: "OutputS3Path"))
4358
4372
  ExportLabelsTaskRunProperties.struct_class = Types::ExportLabelsTaskRunProperties
4359
4373
 
@@ -4700,6 +4714,16 @@ module Aws::Glue
4700
4714
  GetDataCatalogEncryptionSettingsResponse.add_member(:data_catalog_encryption_settings, Shapes::ShapeRef.new(shape: DataCatalogEncryptionSettings, location_name: "DataCatalogEncryptionSettings"))
4701
4715
  GetDataCatalogEncryptionSettingsResponse.struct_class = Types::GetDataCatalogEncryptionSettingsResponse
4702
4716
 
4717
+ GetDataCatalogExportConfigurationInput.struct_class = Types::GetDataCatalogExportConfigurationInput
4718
+
4719
+ GetDataCatalogExportConfigurationOutput.add_member(:export_setting, Shapes::ShapeRef.new(shape: ExportSetting, location_name: "ExportSetting"))
4720
+ GetDataCatalogExportConfigurationOutput.add_member(:status, Shapes::ShapeRef.new(shape: ExportStatus, location_name: "Status"))
4721
+ GetDataCatalogExportConfigurationOutput.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: ExportEncryptionConfiguration, location_name: "EncryptionConfiguration"))
4722
+ GetDataCatalogExportConfigurationOutput.add_member(:s3_table_bucket_arn, Shapes::ShapeRef.new(shape: S3TableBucketArn, location_name: "S3TableBucketArn"))
4723
+ GetDataCatalogExportConfigurationOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "CreatedAt"))
4724
+ GetDataCatalogExportConfigurationOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: UpdatedAt, location_name: "UpdatedAt"))
4725
+ GetDataCatalogExportConfigurationOutput.struct_class = Types::GetDataCatalogExportConfigurationOutput
4726
+
4703
4727
  GetDataQualityModelRequest.add_member(:statistic_id, Shapes::ShapeRef.new(shape: HashString, location_name: "StatisticId"))
4704
4728
  GetDataQualityModelRequest.add_member(:profile_id, Shapes::ShapeRef.new(shape: HashString, required: true, location_name: "ProfileId"))
4705
4729
  GetDataQualityModelRequest.struct_class = Types::GetDataQualityModelRequest
@@ -6846,6 +6870,15 @@ module Aws::Glue
6846
6870
 
6847
6871
  PutDataCatalogEncryptionSettingsResponse.struct_class = Types::PutDataCatalogEncryptionSettingsResponse
6848
6872
 
6873
+ PutDataCatalogExportConfigurationInput.add_member(:export_setting, Shapes::ShapeRef.new(shape: ExportSetting, required: true, location_name: "ExportSetting"))
6874
+ PutDataCatalogExportConfigurationInput.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: ExportEncryptionConfiguration, location_name: "EncryptionConfiguration"))
6875
+ PutDataCatalogExportConfigurationInput.add_member(:client_token, Shapes::ShapeRef.new(shape: HashString, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
6876
+ PutDataCatalogExportConfigurationInput.struct_class = Types::PutDataCatalogExportConfigurationInput
6877
+
6878
+ PutDataCatalogExportConfigurationOutput.add_member(:export_setting, Shapes::ShapeRef.new(shape: ExportSetting, location_name: "ExportSetting"))
6879
+ PutDataCatalogExportConfigurationOutput.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: ExportEncryptionConfiguration, location_name: "EncryptionConfiguration"))
6880
+ PutDataCatalogExportConfigurationOutput.struct_class = Types::PutDataCatalogExportConfigurationOutput
6881
+
6849
6882
  PutDataQualityProfileAnnotationRequest.add_member(:profile_id, Shapes::ShapeRef.new(shape: HashString, required: true, location_name: "ProfileId"))
6850
6883
  PutDataQualityProfileAnnotationRequest.add_member(:inclusion_annotation, Shapes::ShapeRef.new(shape: InclusionAnnotationValue, required: true, location_name: "InclusionAnnotation"))
6851
6884
  PutDataQualityProfileAnnotationRequest.struct_class = Types::PutDataQualityProfileAnnotationRequest
@@ -10435,6 +10468,18 @@ module Aws::Glue
10435
10468
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
10436
10469
  end)
10437
10470
 
10471
+ api.add_operation(:get_data_catalog_export_configuration, Seahorse::Model::Operation.new.tap do |o|
10472
+ o.name = "GetDataCatalogExportConfiguration"
10473
+ o.http_method = "POST"
10474
+ o.http_request_uri = "/"
10475
+ o.input = Shapes::ShapeRef.new(shape: GetDataCatalogExportConfigurationInput)
10476
+ o.output = Shapes::ShapeRef.new(shape: GetDataCatalogExportConfigurationOutput)
10477
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
10478
+ o.errors << Shapes::ShapeRef.new(shape: EntityNotFoundException)
10479
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
10480
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
10481
+ end)
10482
+
10438
10483
  api.add_operation(:get_data_quality_model, Seahorse::Model::Operation.new.tap do |o|
10439
10484
  o.name = "GetDataQualityModel"
10440
10485
  o.http_method = "POST"
@@ -11960,6 +12005,19 @@ module Aws::Glue
11960
12005
  o.errors << Shapes::ShapeRef.new(shape: OperationTimeoutException)
11961
12006
  end)
11962
12007
 
12008
+ api.add_operation(:put_data_catalog_export_configuration, Seahorse::Model::Operation.new.tap do |o|
12009
+ o.name = "PutDataCatalogExportConfiguration"
12010
+ o.http_method = "POST"
12011
+ o.http_request_uri = "/"
12012
+ o.input = Shapes::ShapeRef.new(shape: PutDataCatalogExportConfigurationInput)
12013
+ o.output = Shapes::ShapeRef.new(shape: PutDataCatalogExportConfigurationOutput)
12014
+ o.errors << Shapes::ShapeRef.new(shape: InvalidInputException)
12015
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
12016
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
12017
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
12018
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
12019
+ end)
12020
+
11963
12021
  api.add_operation(:put_data_quality_profile_annotation, Seahorse::Model::Operation.new.tap do |o|
11964
12022
  o.name = "PutDataQualityProfileAnnotation"
11965
12023
  o.http_method = "POST"
@@ -12184,6 +12184,26 @@ module Aws::Glue
12184
12184
  include Aws::Structure
12185
12185
  end
12186
12186
 
12187
+ # The encryption configuration for exported data catalog metadata.
12188
+ #
12189
+ # @!attribute [rw] sse_algorithm
12190
+ # The server-side encryption algorithm used for the exported data.
12191
+ # Valid values are `AES256` and `aws:kms`.
12192
+ # @return [String]
12193
+ #
12194
+ # @!attribute [rw] kms_key_arn
12195
+ # The ARN of the KMS key used to encrypt the exported data.
12196
+ # @return [String]
12197
+ #
12198
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ExportEncryptionConfiguration AWS API Documentation
12199
+ #
12200
+ class ExportEncryptionConfiguration < Struct.new(
12201
+ :sse_algorithm,
12202
+ :kms_key_arn)
12203
+ SENSITIVE = []
12204
+ include Aws::Structure
12205
+ end
12206
+
12187
12207
  # Specifies configuration properties for an exporting labels task run.
12188
12208
  #
12189
12209
  # @!attribute [rw] output_s3_path
@@ -12967,6 +12987,8 @@ module Aws::Glue
12967
12987
  include Aws::Structure
12968
12988
  end
12969
12989
 
12990
+ # The asset metadata returned by the `GetAsset` operation.
12991
+ #
12970
12992
  # @!attribute [rw] id
12971
12993
  # The unique identifier of the asset.
12972
12994
  # @return [String]
@@ -13868,6 +13890,54 @@ module Aws::Glue
13868
13890
  include Aws::Structure
13869
13891
  end
13870
13892
 
13893
+ # @api private
13894
+ #
13895
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataCatalogExportConfigurationInput AWS API Documentation
13896
+ #
13897
+ class GetDataCatalogExportConfigurationInput < Aws::EmptyStructure; end
13898
+
13899
+ # The export configuration returned by the
13900
+ # `GetDataCatalogExportConfiguration` operation.
13901
+ #
13902
+ # @!attribute [rw] export_setting
13903
+ # The export setting for the data catalog. Valid values are `ENABLED`
13904
+ # and `DISABLED`.
13905
+ # @return [String]
13906
+ #
13907
+ # @!attribute [rw] status
13908
+ # The current status of the export. Valid values are `ENABLING`,
13909
+ # `ENABLED`, `DISABLING`, `DISABLED`, and `FAILED`.
13910
+ # @return [String]
13911
+ #
13912
+ # @!attribute [rw] encryption_configuration
13913
+ # The encryption configuration for the exported data.
13914
+ # @return [Types::ExportEncryptionConfiguration]
13915
+ #
13916
+ # @!attribute [rw] s3_table_bucket_arn
13917
+ # The ARN of the S3 Tables bucket where catalog metadata is exported.
13918
+ # @return [String]
13919
+ #
13920
+ # @!attribute [rw] created_at
13921
+ # The timestamp at which the export configuration was created.
13922
+ # @return [Time]
13923
+ #
13924
+ # @!attribute [rw] updated_at
13925
+ # The timestamp at which the export configuration was last updated.
13926
+ # @return [Time]
13927
+ #
13928
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataCatalogExportConfigurationOutput AWS API Documentation
13929
+ #
13930
+ class GetDataCatalogExportConfigurationOutput < Struct.new(
13931
+ :export_setting,
13932
+ :status,
13933
+ :encryption_configuration,
13934
+ :s3_table_bucket_arn,
13935
+ :created_at,
13936
+ :updated_at)
13937
+ SENSITIVE = []
13938
+ include Aws::Structure
13939
+ end
13940
+
13871
13941
  # @!attribute [rw] statistic_id
13872
13942
  # The Statistic ID.
13873
13943
  # @return [String]
@@ -22062,7 +22132,7 @@ module Aws::Glue
22062
22132
  # @return [String]
22063
22133
  #
22064
22134
  # @!attribute [rw] table_name
22065
- # The name of the table for which statistics is generated.
22135
+ # The name of the materialized view.
22066
22136
  # @return [String]
22067
22137
  #
22068
22138
  # @!attribute [rw] max_results
@@ -22898,6 +22968,7 @@ module Aws::Glue
22898
22968
  # Exception thrown when stopping a task that is not in running state.
22899
22969
  #
22900
22970
  # @!attribute [rw] message
22971
+ # A message describing the problem.
22901
22972
  # @return [String]
22902
22973
  #
22903
22974
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/MaterializedViewRefreshTaskNotRunningException AWS API Documentation
@@ -22924,7 +22995,7 @@ module Aws::Glue
22924
22995
  # @return [String]
22925
22996
  #
22926
22997
  # @!attribute [rw] table_name
22927
- # The name of the table for which statistics is generated.
22998
+ # The name of the materialized view.
22928
22999
  # @return [String]
22929
23000
  #
22930
23001
  # @!attribute [rw] catalog_id
@@ -22933,7 +23004,8 @@ module Aws::Glue
22933
23004
  # @return [String]
22934
23005
  #
22935
23006
  # @!attribute [rw] role
22936
- # The IAM role that the service assumes to generate statistics.
23007
+ # The IAM role that the service assumes to run the materialized view
23008
+ # refresh task.
22937
23009
  # @return [String]
22938
23010
  #
22939
23011
  # @!attribute [rw] status
@@ -22998,6 +23070,7 @@ module Aws::Glue
22998
23070
  # Exception thrown when a task is already in running state.
22999
23071
  #
23000
23072
  # @!attribute [rw] message
23073
+ # A message describing the problem.
23001
23074
  # @return [String]
23002
23075
  #
23003
23076
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/MaterializedViewRefreshTaskRunningException AWS API Documentation
@@ -23011,6 +23084,7 @@ module Aws::Glue
23011
23084
  # Exception thrown when a task is already in stopping state.
23012
23085
  #
23013
23086
  # @!attribute [rw] message
23087
+ # A message describing the problem.
23014
23088
  # @return [String]
23015
23089
  #
23016
23090
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/MaterializedViewRefreshTaskStoppingException AWS API Documentation
@@ -24697,6 +24771,55 @@ module Aws::Glue
24697
24771
  #
24698
24772
  class PutDataCatalogEncryptionSettingsResponse < Aws::EmptyStructure; end
24699
24773
 
24774
+ # @!attribute [rw] export_setting
24775
+ # The export setting for the data catalog. Specify `ENABLED` to start
24776
+ # exporting catalog metadata to S3 Tables, or `DISABLED` to stop
24777
+ # exporting. This field is required.
24778
+ # @return [String]
24779
+ #
24780
+ # @!attribute [rw] encryption_configuration
24781
+ # The encryption configuration for the exported data. If not
24782
+ # specified, the default encryption settings are used.
24783
+ # @return [Types::ExportEncryptionConfiguration]
24784
+ #
24785
+ # @!attribute [rw] client_token
24786
+ # A unique, case-sensitive identifier that you provide to ensure the
24787
+ # idempotency of the request.
24788
+ #
24789
+ # **A suitable default value is auto-generated.** You should normally
24790
+ # not need to pass this option.
24791
+ # @return [String]
24792
+ #
24793
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/PutDataCatalogExportConfigurationInput AWS API Documentation
24794
+ #
24795
+ class PutDataCatalogExportConfigurationInput < Struct.new(
24796
+ :export_setting,
24797
+ :encryption_configuration,
24798
+ :client_token)
24799
+ SENSITIVE = []
24800
+ include Aws::Structure
24801
+ end
24802
+
24803
+ # The export configuration returned by the
24804
+ # `PutDataCatalogExportConfiguration` operation.
24805
+ #
24806
+ # @!attribute [rw] export_setting
24807
+ # The export setting for the data catalog.
24808
+ # @return [String]
24809
+ #
24810
+ # @!attribute [rw] encryption_configuration
24811
+ # The encryption configuration for the exported data.
24812
+ # @return [Types::ExportEncryptionConfiguration]
24813
+ #
24814
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/PutDataCatalogExportConfigurationOutput AWS API Documentation
24815
+ #
24816
+ class PutDataCatalogExportConfigurationOutput < Struct.new(
24817
+ :export_setting,
24818
+ :encryption_configuration)
24819
+ SENSITIVE = []
24820
+ include Aws::Structure
24821
+ end
24822
+
24700
24823
  # @!attribute [rw] profile_id
24701
24824
  # The ID of the data quality monitoring profile to annotate.
24702
24825
  # @return [String]
@@ -27536,6 +27659,8 @@ module Aws::Glue
27536
27659
  include Aws::Structure
27537
27660
  end
27538
27661
 
27662
+ # The search results returned by the `SearchAssets` operation.
27663
+ #
27539
27664
  # @!attribute [rw] items
27540
27665
  # The list of assets matching the search criteria.
27541
27666
  # @return [Array<Types::SearchResultItem>]
@@ -29376,8 +29501,7 @@ module Aws::Glue
29376
29501
  # @return [String]
29377
29502
  #
29378
29503
  # @!attribute [rw] table_name
29379
- # The name of the table to generate run the materialized view refresh
29380
- # task.
29504
+ # The name of the materialized view to run the refresh task for.
29381
29505
  # @return [String]
29382
29506
  #
29383
29507
  # @!attribute [rw] full_refresh
@@ -29830,7 +29954,7 @@ module Aws::Glue
29830
29954
  # @return [String]
29831
29955
  #
29832
29956
  # @!attribute [rw] table_name
29833
- # The name of the table to generate statistics.
29957
+ # The name of the materialized view.
29834
29958
  # @return [String]
29835
29959
  #
29836
29960
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StopMaterializedViewRefreshTaskRunRequest AWS API Documentation
data/lib/aws-sdk-glue.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::Glue
54
54
  autoload :EndpointProvider, 'aws-sdk-glue/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-glue/endpoints'
56
56
 
57
- GEM_VERSION = '1.267.0'
57
+ GEM_VERSION = '1.269.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1918,6 +1918,20 @@ module Aws
1918
1918
  ) -> _GetDataCatalogEncryptionSettingsResponseSuccess
1919
1919
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataCatalogEncryptionSettingsResponseSuccess
1920
1920
 
1921
+ interface _GetDataCatalogExportConfigurationResponseSuccess
1922
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDataCatalogExportConfigurationOutput]
1923
+ def export_setting: () -> ("ENABLED" | "DISABLED")
1924
+ def status: () -> ("ENABLING" | "ENABLED" | "DISABLING" | "DISABLED" | "FAILED")
1925
+ def encryption_configuration: () -> Types::ExportEncryptionConfiguration
1926
+ def s3_table_bucket_arn: () -> ::String
1927
+ def created_at: () -> ::Time
1928
+ def updated_at: () -> ::Time
1929
+ end
1930
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_data_catalog_export_configuration-instance_method
1931
+ def get_data_catalog_export_configuration: (
1932
+ ) -> _GetDataCatalogExportConfigurationResponseSuccess
1933
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataCatalogExportConfigurationResponseSuccess
1934
+
1921
1935
  interface _GetDataQualityModelResponseSuccess
1922
1936
  include ::Seahorse::Client::_ResponseSuccess[Types::GetDataQualityModelResponse]
1923
1937
  def status: () -> ("RUNNING" | "SUCCEEDED" | "FAILED")
@@ -3580,6 +3594,22 @@ module Aws
3580
3594
  ) -> _PutDataCatalogEncryptionSettingsResponseSuccess
3581
3595
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDataCatalogEncryptionSettingsResponseSuccess
3582
3596
 
3597
+ interface _PutDataCatalogExportConfigurationResponseSuccess
3598
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutDataCatalogExportConfigurationOutput]
3599
+ def export_setting: () -> ("ENABLED" | "DISABLED")
3600
+ def encryption_configuration: () -> Types::ExportEncryptionConfiguration
3601
+ end
3602
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#put_data_catalog_export_configuration-instance_method
3603
+ def put_data_catalog_export_configuration: (
3604
+ export_setting: ("ENABLED" | "DISABLED"),
3605
+ ?encryption_configuration: {
3606
+ sse_algorithm: ::String?,
3607
+ kms_key_arn: ::String?
3608
+ },
3609
+ ?client_token: ::String
3610
+ ) -> _PutDataCatalogExportConfigurationResponseSuccess
3611
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutDataCatalogExportConfigurationResponseSuccess
3612
+
3583
3613
  interface _PutDataQualityProfileAnnotationResponseSuccess
3584
3614
  include ::Seahorse::Client::_ResponseSuccess[Types::PutDataQualityProfileAnnotationResponse]
3585
3615
  end
data/sig/types.rbs CHANGED
@@ -2982,6 +2982,12 @@ module Aws::Glue
2982
2982
  SENSITIVE: []
2983
2983
  end
2984
2984
 
2985
+ class ExportEncryptionConfiguration
2986
+ attr_accessor sse_algorithm: ::String
2987
+ attr_accessor kms_key_arn: ::String
2988
+ SENSITIVE: []
2989
+ end
2990
+
2985
2991
  class ExportLabelsTaskRunProperties
2986
2992
  attr_accessor output_s3_path: ::String
2987
2993
  SENSITIVE: []
@@ -3446,6 +3452,19 @@ module Aws::Glue
3446
3452
  SENSITIVE: []
3447
3453
  end
3448
3454
 
3455
+ class GetDataCatalogExportConfigurationInput < Aws::EmptyStructure
3456
+ end
3457
+
3458
+ class GetDataCatalogExportConfigurationOutput
3459
+ attr_accessor export_setting: ("ENABLED" | "DISABLED")
3460
+ attr_accessor status: ("ENABLING" | "ENABLED" | "DISABLING" | "DISABLED" | "FAILED")
3461
+ attr_accessor encryption_configuration: Types::ExportEncryptionConfiguration
3462
+ attr_accessor s3_table_bucket_arn: ::String
3463
+ attr_accessor created_at: ::Time
3464
+ attr_accessor updated_at: ::Time
3465
+ SENSITIVE: []
3466
+ end
3467
+
3449
3468
  class GetDataQualityModelRequest
3450
3469
  attr_accessor statistic_id: ::String
3451
3470
  attr_accessor profile_id: ::String
@@ -6074,6 +6093,19 @@ module Aws::Glue
6074
6093
  class PutDataCatalogEncryptionSettingsResponse < Aws::EmptyStructure
6075
6094
  end
6076
6095
 
6096
+ class PutDataCatalogExportConfigurationInput
6097
+ attr_accessor export_setting: ("ENABLED" | "DISABLED")
6098
+ attr_accessor encryption_configuration: Types::ExportEncryptionConfiguration
6099
+ attr_accessor client_token: ::String
6100
+ SENSITIVE: []
6101
+ end
6102
+
6103
+ class PutDataCatalogExportConfigurationOutput
6104
+ attr_accessor export_setting: ("ENABLED" | "DISABLED")
6105
+ attr_accessor encryption_configuration: Types::ExportEncryptionConfiguration
6106
+ SENSITIVE: []
6107
+ end
6108
+
6077
6109
  class PutDataQualityProfileAnnotationRequest
6078
6110
  attr_accessor profile_id: ::String
6079
6111
  attr_accessor inclusion_annotation: ("INCLUDE" | "EXCLUDE")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.267.0
4
+ version: 1.269.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services