aws-sdk-glue 1.267.0 → 1.268.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: 775f9502c83364b4feb933cbdbf05df2db19026589f40c77c289b85aa45db3ae
4
+ data.tar.gz: ba37272e8b0aaf782b0c4cd20325ca812cb75473f7c7c1be3bb223674250c4f5
5
5
  SHA512:
6
- metadata.gz: 4265a8049cc7643a5b823af571aeee8bd964f7bebbca79e12a1105dd5350d672d64b04c7c602ed2f24be57dcf33802f201045088bc039f5ce5e3c216fa3fabd1
7
- data.tar.gz: 7098053d739242261204fdb41caa830f1ae11b80b649810e8a4e85af0696764930597be5d91a4019adb4fec5bc3edb68420f2217c370d04110ac62c056225b62
6
+ metadata.gz: 818a15cf7406835d454078f61be5411da2ffbe9714521b7ad069bd4b1a83760845070adf0211aca37f11895254729796bd4cffe0a18c6d537fc0872e2bfe70ab
7
+ data.tar.gz: 7a8b4f58f0e0632fba66ca52f0f7e038c509f4aa17e66ebd095100540eea180859d18b9856722da7be31653336401e5de112bfcdd4545994971e40fa32b768aa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.268.0 (2026-08-05)
5
+ ------------------
6
+
7
+ * Feature - Added the PutDataCatalogExportConfiguration to export Glue Data Catalog metadata to systems tables stored in S3 Tables.
8
+
4
9
  1.267.0 (2026-07-29)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.267.0
1
+ 1.268.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
  #
@@ -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
@@ -20986,7 +21069,7 @@ module Aws::Glue
20986
21069
  tracer: tracer
20987
21070
  )
20988
21071
  context[:gem_name] = 'aws-sdk-glue'
20989
- context[:gem_version] = '1.267.0'
21072
+ context[:gem_version] = '1.268.0'
20990
21073
  Seahorse::Client::Request.new(handlers, context)
20991
21074
  end
20992
21075
 
@@ -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
@@ -13868,6 +13888,51 @@ module Aws::Glue
13868
13888
  include Aws::Structure
13869
13889
  end
13870
13890
 
13891
+ # @api private
13892
+ #
13893
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataCatalogExportConfigurationInput AWS API Documentation
13894
+ #
13895
+ class GetDataCatalogExportConfigurationInput < Aws::EmptyStructure; end
13896
+
13897
+ # @!attribute [rw] export_setting
13898
+ # The export setting for the data catalog. Valid values are `ENABLED`
13899
+ # and `DISABLED`.
13900
+ # @return [String]
13901
+ #
13902
+ # @!attribute [rw] status
13903
+ # The current status of the export. Valid values are `ENABLING`,
13904
+ # `ENABLED`, `DISABLING`, `DISABLED`, and `FAILED`.
13905
+ # @return [String]
13906
+ #
13907
+ # @!attribute [rw] encryption_configuration
13908
+ # The encryption configuration for the exported data.
13909
+ # @return [Types::ExportEncryptionConfiguration]
13910
+ #
13911
+ # @!attribute [rw] s3_table_bucket_arn
13912
+ # The ARN of the S3 Tables bucket where catalog metadata is exported.
13913
+ # @return [String]
13914
+ #
13915
+ # @!attribute [rw] created_at
13916
+ # The timestamp at which the export configuration was created.
13917
+ # @return [Time]
13918
+ #
13919
+ # @!attribute [rw] updated_at
13920
+ # The timestamp at which the export configuration was last updated.
13921
+ # @return [Time]
13922
+ #
13923
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataCatalogExportConfigurationOutput AWS API Documentation
13924
+ #
13925
+ class GetDataCatalogExportConfigurationOutput < Struct.new(
13926
+ :export_setting,
13927
+ :status,
13928
+ :encryption_configuration,
13929
+ :s3_table_bucket_arn,
13930
+ :created_at,
13931
+ :updated_at)
13932
+ SENSITIVE = []
13933
+ include Aws::Structure
13934
+ end
13935
+
13871
13936
  # @!attribute [rw] statistic_id
13872
13937
  # The Statistic ID.
13873
13938
  # @return [String]
@@ -24697,6 +24762,52 @@ module Aws::Glue
24697
24762
  #
24698
24763
  class PutDataCatalogEncryptionSettingsResponse < Aws::EmptyStructure; end
24699
24764
 
24765
+ # @!attribute [rw] export_setting
24766
+ # The export setting for the data catalog. Specify `ENABLED` to start
24767
+ # exporting catalog metadata to S3 Tables, or `DISABLED` to stop
24768
+ # exporting. This field is required.
24769
+ # @return [String]
24770
+ #
24771
+ # @!attribute [rw] encryption_configuration
24772
+ # The encryption configuration for the exported data. If not
24773
+ # specified, the default encryption settings are used.
24774
+ # @return [Types::ExportEncryptionConfiguration]
24775
+ #
24776
+ # @!attribute [rw] client_token
24777
+ # A unique, case-sensitive identifier that you provide to ensure the
24778
+ # idempotency of the request.
24779
+ #
24780
+ # **A suitable default value is auto-generated.** You should normally
24781
+ # not need to pass this option.
24782
+ # @return [String]
24783
+ #
24784
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/PutDataCatalogExportConfigurationInput AWS API Documentation
24785
+ #
24786
+ class PutDataCatalogExportConfigurationInput < Struct.new(
24787
+ :export_setting,
24788
+ :encryption_configuration,
24789
+ :client_token)
24790
+ SENSITIVE = []
24791
+ include Aws::Structure
24792
+ end
24793
+
24794
+ # @!attribute [rw] export_setting
24795
+ # The export setting for the data catalog.
24796
+ # @return [String]
24797
+ #
24798
+ # @!attribute [rw] encryption_configuration
24799
+ # The encryption configuration for the exported data.
24800
+ # @return [Types::ExportEncryptionConfiguration]
24801
+ #
24802
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/PutDataCatalogExportConfigurationOutput AWS API Documentation
24803
+ #
24804
+ class PutDataCatalogExportConfigurationOutput < Struct.new(
24805
+ :export_setting,
24806
+ :encryption_configuration)
24807
+ SENSITIVE = []
24808
+ include Aws::Structure
24809
+ end
24810
+
24700
24811
  # @!attribute [rw] profile_id
24701
24812
  # The ID of the data quality monitoring profile to annotate.
24702
24813
  # @return [String]
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.268.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.268.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services