aws-sdk-glue 1.220.0 → 1.221.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +18 -1
- data/lib/aws-sdk-glue/client_api.rb +16 -0
- data/lib/aws-sdk-glue/types.rb +79 -4
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/types.rbs +14 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac6694c375ad3d7c0055ce30cb199ce21b5d00d76d0a2eb318200882367094dd
|
4
|
+
data.tar.gz: e1e68e0bf70604e777df838d1489e8487051906b1156572664739585b1ace792
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a97ce7c5e64310bb6bcf65098034049c64d25146cf8261036a33b64b759484182215d4319a1158637017888afdff90a3c6d941dbedce39911b16f40210f67941
|
7
|
+
data.tar.gz: 19a51dfa01c5401ffbb1abec5d3df2b66068a865a25bf6dd4e3c3d6546d33d8e91eb4bc562b1b5e8d82652b597acd31e2e07deaee1172ac0639ff762afa522e8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.221.0 (2025-06-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Glue Data Quality now provides aggregated metrics in evaluation results when publishAggregatedMetrics with row-level results are enabled. These metrics include summary statistics showing total counts of processed, passed, and failed rows and rules in a single view.
|
8
|
+
|
4
9
|
1.220.0 (2025-06-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.221.0
|
data/lib/aws-sdk-glue/client.rb
CHANGED
@@ -1028,6 +1028,8 @@ module Aws::Glue
|
|
1028
1028
|
# resp.results[0].rule_results[0].evaluated_metrics #=> Hash
|
1029
1029
|
# resp.results[0].rule_results[0].evaluated_metrics["NameString"] #=> Float
|
1030
1030
|
# resp.results[0].rule_results[0].evaluated_rule #=> String
|
1031
|
+
# resp.results[0].rule_results[0].rule_metrics #=> Hash
|
1032
|
+
# resp.results[0].rule_results[0].rule_metrics["NameString"] #=> Float
|
1031
1033
|
# resp.results[0].analyzer_results #=> Array
|
1032
1034
|
# resp.results[0].analyzer_results[0].name #=> String
|
1033
1035
|
# resp.results[0].analyzer_results[0].description #=> String
|
@@ -1044,6 +1046,12 @@ module Aws::Glue
|
|
1044
1046
|
# resp.results[0].observations[0].metric_based_observation.metric_values.upper_limit #=> Float
|
1045
1047
|
# resp.results[0].observations[0].metric_based_observation.new_rules #=> Array
|
1046
1048
|
# resp.results[0].observations[0].metric_based_observation.new_rules[0] #=> String
|
1049
|
+
# resp.results[0].aggregated_metrics.total_rows_processed #=> Float
|
1050
|
+
# resp.results[0].aggregated_metrics.total_rows_passed #=> Float
|
1051
|
+
# resp.results[0].aggregated_metrics.total_rows_failed #=> Float
|
1052
|
+
# resp.results[0].aggregated_metrics.total_rules_processed #=> Float
|
1053
|
+
# resp.results[0].aggregated_metrics.total_rules_passed #=> Float
|
1054
|
+
# resp.results[0].aggregated_metrics.total_rules_failed #=> Float
|
1047
1055
|
# resp.results_not_found #=> Array
|
1048
1056
|
# resp.results_not_found[0] #=> String
|
1049
1057
|
#
|
@@ -8424,6 +8432,7 @@ module Aws::Glue
|
|
8424
8432
|
# * {Types::GetDataQualityResultResponse#rule_results #rule_results} => Array<Types::DataQualityRuleResult>
|
8425
8433
|
# * {Types::GetDataQualityResultResponse#analyzer_results #analyzer_results} => Array<Types::DataQualityAnalyzerResult>
|
8426
8434
|
# * {Types::GetDataQualityResultResponse#observations #observations} => Array<Types::DataQualityObservation>
|
8435
|
+
# * {Types::GetDataQualityResultResponse#aggregated_metrics #aggregated_metrics} => Types::DataQualityAggregatedMetrics
|
8427
8436
|
#
|
8428
8437
|
# @example Request syntax with placeholder values
|
8429
8438
|
#
|
@@ -8457,6 +8466,8 @@ module Aws::Glue
|
|
8457
8466
|
# resp.rule_results[0].evaluated_metrics #=> Hash
|
8458
8467
|
# resp.rule_results[0].evaluated_metrics["NameString"] #=> Float
|
8459
8468
|
# resp.rule_results[0].evaluated_rule #=> String
|
8469
|
+
# resp.rule_results[0].rule_metrics #=> Hash
|
8470
|
+
# resp.rule_results[0].rule_metrics["NameString"] #=> Float
|
8460
8471
|
# resp.analyzer_results #=> Array
|
8461
8472
|
# resp.analyzer_results[0].name #=> String
|
8462
8473
|
# resp.analyzer_results[0].description #=> String
|
@@ -8473,6 +8484,12 @@ module Aws::Glue
|
|
8473
8484
|
# resp.observations[0].metric_based_observation.metric_values.upper_limit #=> Float
|
8474
8485
|
# resp.observations[0].metric_based_observation.new_rules #=> Array
|
8475
8486
|
# resp.observations[0].metric_based_observation.new_rules[0] #=> String
|
8487
|
+
# resp.aggregated_metrics.total_rows_processed #=> Float
|
8488
|
+
# resp.aggregated_metrics.total_rows_passed #=> Float
|
8489
|
+
# resp.aggregated_metrics.total_rows_failed #=> Float
|
8490
|
+
# resp.aggregated_metrics.total_rules_processed #=> Float
|
8491
|
+
# resp.aggregated_metrics.total_rules_passed #=> Float
|
8492
|
+
# resp.aggregated_metrics.total_rules_failed #=> Float
|
8476
8493
|
#
|
8477
8494
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityResult AWS API Documentation
|
8478
8495
|
#
|
@@ -20289,7 +20306,7 @@ module Aws::Glue
|
|
20289
20306
|
tracer: tracer
|
20290
20307
|
)
|
20291
20308
|
context[:gem_name] = 'aws-sdk-glue'
|
20292
|
-
context[:gem_version] = '1.
|
20309
|
+
context[:gem_version] = '1.221.0'
|
20293
20310
|
Seahorse::Client::Request.new(handlers, context)
|
20294
20311
|
end
|
20295
20312
|
|
@@ -392,6 +392,7 @@ module Aws::Glue
|
|
392
392
|
DataLakePrincipalString = Shapes::StringShape.new(name: 'DataLakePrincipalString')
|
393
393
|
DataOperation = Shapes::StringShape.new(name: 'DataOperation')
|
394
394
|
DataOperations = Shapes::ListShape.new(name: 'DataOperations')
|
395
|
+
DataQualityAggregatedMetrics = Shapes::StructureShape.new(name: 'DataQualityAggregatedMetrics')
|
395
396
|
DataQualityAnalyzerResult = Shapes::StructureShape.new(name: 'DataQualityAnalyzerResult')
|
396
397
|
DataQualityAnalyzerResults = Shapes::ListShape.new(name: 'DataQualityAnalyzerResults')
|
397
398
|
DataQualityEncryption = Shapes::StructureShape.new(name: 'DataQualityEncryption')
|
@@ -1185,6 +1186,7 @@ module Aws::Glue
|
|
1185
1186
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
1186
1187
|
RoleString = Shapes::StringShape.new(name: 'RoleString')
|
1187
1188
|
RowTag = Shapes::StringShape.new(name: 'RowTag')
|
1189
|
+
RuleMetricsMap = Shapes::MapShape.new(name: 'RuleMetricsMap')
|
1188
1190
|
RulesetNames = Shapes::ListShape.new(name: 'RulesetNames')
|
1189
1191
|
RunId = Shapes::StringShape.new(name: 'RunId')
|
1190
1192
|
RunIdentifier = Shapes::StructureShape.new(name: 'RunIdentifier')
|
@@ -3051,6 +3053,14 @@ module Aws::Glue
|
|
3051
3053
|
|
3052
3054
|
DataOperations.member = Shapes::ShapeRef.new(shape: DataOperation)
|
3053
3055
|
|
3056
|
+
DataQualityAggregatedMetrics.add_member(:total_rows_processed, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "TotalRowsProcessed"))
|
3057
|
+
DataQualityAggregatedMetrics.add_member(:total_rows_passed, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "TotalRowsPassed"))
|
3058
|
+
DataQualityAggregatedMetrics.add_member(:total_rows_failed, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "TotalRowsFailed"))
|
3059
|
+
DataQualityAggregatedMetrics.add_member(:total_rules_processed, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "TotalRulesProcessed"))
|
3060
|
+
DataQualityAggregatedMetrics.add_member(:total_rules_passed, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "TotalRulesPassed"))
|
3061
|
+
DataQualityAggregatedMetrics.add_member(:total_rules_failed, Shapes::ShapeRef.new(shape: NullableDouble, location_name: "TotalRulesFailed"))
|
3062
|
+
DataQualityAggregatedMetrics.struct_class = Types::DataQualityAggregatedMetrics
|
3063
|
+
|
3054
3064
|
DataQualityAnalyzerResult.add_member(:name, Shapes::ShapeRef.new(shape: NameString, location_name: "Name"))
|
3055
3065
|
DataQualityAnalyzerResult.add_member(:description, Shapes::ShapeRef.new(shape: DataQualityRuleResultDescription, location_name: "Description"))
|
3056
3066
|
DataQualityAnalyzerResult.add_member(:evaluation_message, Shapes::ShapeRef.new(shape: DataQualityRuleResultDescription, location_name: "EvaluationMessage"))
|
@@ -3094,6 +3104,7 @@ module Aws::Glue
|
|
3094
3104
|
DataQualityResult.add_member(:rule_results, Shapes::ShapeRef.new(shape: DataQualityRuleResults, location_name: "RuleResults"))
|
3095
3105
|
DataQualityResult.add_member(:analyzer_results, Shapes::ShapeRef.new(shape: DataQualityAnalyzerResults, location_name: "AnalyzerResults"))
|
3096
3106
|
DataQualityResult.add_member(:observations, Shapes::ShapeRef.new(shape: DataQualityObservations, location_name: "Observations"))
|
3107
|
+
DataQualityResult.add_member(:aggregated_metrics, Shapes::ShapeRef.new(shape: DataQualityAggregatedMetrics, location_name: "AggregatedMetrics"))
|
3097
3108
|
DataQualityResult.struct_class = Types::DataQualityResult
|
3098
3109
|
|
3099
3110
|
DataQualityResultDescription.add_member(:result_id, Shapes::ShapeRef.new(shape: HashString, location_name: "ResultId"))
|
@@ -3137,6 +3148,7 @@ module Aws::Glue
|
|
3137
3148
|
DataQualityRuleResult.add_member(:result, Shapes::ShapeRef.new(shape: DataQualityRuleResultStatus, location_name: "Result"))
|
3138
3149
|
DataQualityRuleResult.add_member(:evaluated_metrics, Shapes::ShapeRef.new(shape: EvaluatedMetricsMap, location_name: "EvaluatedMetrics"))
|
3139
3150
|
DataQualityRuleResult.add_member(:evaluated_rule, Shapes::ShapeRef.new(shape: DataQualityRuleResultDescription, location_name: "EvaluatedRule"))
|
3151
|
+
DataQualityRuleResult.add_member(:rule_metrics, Shapes::ShapeRef.new(shape: RuleMetricsMap, location_name: "RuleMetrics"))
|
3140
3152
|
DataQualityRuleResult.struct_class = Types::DataQualityRuleResult
|
3141
3153
|
|
3142
3154
|
DataQualityRuleResults.member = Shapes::ShapeRef.new(shape: DataQualityRuleResult)
|
@@ -4004,6 +4016,7 @@ module Aws::Glue
|
|
4004
4016
|
GetDataQualityResultResponse.add_member(:rule_results, Shapes::ShapeRef.new(shape: DataQualityRuleResults, location_name: "RuleResults"))
|
4005
4017
|
GetDataQualityResultResponse.add_member(:analyzer_results, Shapes::ShapeRef.new(shape: DataQualityAnalyzerResults, location_name: "AnalyzerResults"))
|
4006
4018
|
GetDataQualityResultResponse.add_member(:observations, Shapes::ShapeRef.new(shape: DataQualityObservations, location_name: "Observations"))
|
4019
|
+
GetDataQualityResultResponse.add_member(:aggregated_metrics, Shapes::ShapeRef.new(shape: DataQualityAggregatedMetrics, location_name: "AggregatedMetrics"))
|
4007
4020
|
GetDataQualityResultResponse.struct_class = Types::GetDataQualityResultResponse
|
4008
4021
|
|
4009
4022
|
GetDataQualityRuleRecommendationRunRequest.add_member(:run_id, Shapes::ShapeRef.new(shape: HashString, required: true, location_name: "RunId"))
|
@@ -5891,6 +5904,9 @@ module Aws::Glue
|
|
5891
5904
|
RetentionMetrics.add_member(:iceberg_metrics, Shapes::ShapeRef.new(shape: IcebergRetentionMetrics, location_name: "IcebergMetrics"))
|
5892
5905
|
RetentionMetrics.struct_class = Types::RetentionMetrics
|
5893
5906
|
|
5907
|
+
RuleMetricsMap.key = Shapes::ShapeRef.new(shape: NameString)
|
5908
|
+
RuleMetricsMap.value = Shapes::ShapeRef.new(shape: NullableDouble)
|
5909
|
+
|
5894
5910
|
RulesetNames.member = Shapes::ShapeRef.new(shape: NameString)
|
5895
5911
|
|
5896
5912
|
RunIdentifier.add_member(:run_id, Shapes::ShapeRef.new(shape: HashString, location_name: "RunId"))
|
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -5285,6 +5285,8 @@ module Aws::Glue
|
|
5285
5285
|
include Aws::Structure
|
5286
5286
|
end
|
5287
5287
|
|
5288
|
+
# A request to create a data quality ruleset.
|
5289
|
+
#
|
5288
5290
|
# @!attribute [rw] name
|
5289
5291
|
# A unique name for the data quality ruleset.
|
5290
5292
|
# @return [String]
|
@@ -7623,6 +7625,51 @@ module Aws::Glue
|
|
7623
7625
|
include Aws::Structure
|
7624
7626
|
end
|
7625
7627
|
|
7628
|
+
# A summary of metrics showing the total counts of processed rows and
|
7629
|
+
# rules, including their pass/fail statistics based on row-level
|
7630
|
+
# results.
|
7631
|
+
#
|
7632
|
+
# @!attribute [rw] total_rows_processed
|
7633
|
+
# The total number of rows that were processed during the data quality
|
7634
|
+
# evaluation.
|
7635
|
+
# @return [Float]
|
7636
|
+
#
|
7637
|
+
# @!attribute [rw] total_rows_passed
|
7638
|
+
# The total number of rows that passed all applicable data quality
|
7639
|
+
# rules.
|
7640
|
+
# @return [Float]
|
7641
|
+
#
|
7642
|
+
# @!attribute [rw] total_rows_failed
|
7643
|
+
# The total number of rows that failed one or more data quality rules.
|
7644
|
+
# @return [Float]
|
7645
|
+
#
|
7646
|
+
# @!attribute [rw] total_rules_processed
|
7647
|
+
# The total number of data quality rules that were evaluated.
|
7648
|
+
# @return [Float]
|
7649
|
+
#
|
7650
|
+
# @!attribute [rw] total_rules_passed
|
7651
|
+
# The total number of data quality rules that passed their evaluation
|
7652
|
+
# criteria.
|
7653
|
+
# @return [Float]
|
7654
|
+
#
|
7655
|
+
# @!attribute [rw] total_rules_failed
|
7656
|
+
# The total number of data quality rules that failed their evaluation
|
7657
|
+
# criteria.
|
7658
|
+
# @return [Float]
|
7659
|
+
#
|
7660
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DataQualityAggregatedMetrics AWS API Documentation
|
7661
|
+
#
|
7662
|
+
class DataQualityAggregatedMetrics < Struct.new(
|
7663
|
+
:total_rows_processed,
|
7664
|
+
:total_rows_passed,
|
7665
|
+
:total_rows_failed,
|
7666
|
+
:total_rules_processed,
|
7667
|
+
:total_rules_passed,
|
7668
|
+
:total_rules_failed)
|
7669
|
+
SENSITIVE = []
|
7670
|
+
include Aws::Structure
|
7671
|
+
end
|
7672
|
+
|
7626
7673
|
# Describes the result of the evaluation of a data quality analyzer.
|
7627
7674
|
#
|
7628
7675
|
# @!attribute [rw] name
|
@@ -7822,6 +7869,12 @@ module Aws::Glue
|
|
7822
7869
|
# observations generated after evaluating the rules and analyzers.
|
7823
7870
|
# @return [Array<Types::DataQualityObservation>]
|
7824
7871
|
#
|
7872
|
+
# @!attribute [rw] aggregated_metrics
|
7873
|
+
# A summary of `DataQualityAggregatedMetrics` objects showing the
|
7874
|
+
# total counts of processed rows and rules, including their pass/fail
|
7875
|
+
# statistics based on row-level results.
|
7876
|
+
# @return [Types::DataQualityAggregatedMetrics]
|
7877
|
+
#
|
7825
7878
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DataQualityResult AWS API Documentation
|
7826
7879
|
#
|
7827
7880
|
class DataQualityResult < Struct.new(
|
@@ -7838,7 +7891,8 @@ module Aws::Glue
|
|
7838
7891
|
:ruleset_evaluation_run_id,
|
7839
7892
|
:rule_results,
|
7840
7893
|
:analyzer_results,
|
7841
|
-
:observations
|
7894
|
+
:observations,
|
7895
|
+
:aggregated_metrics)
|
7842
7896
|
SENSITIVE = []
|
7843
7897
|
include Aws::Structure
|
7844
7898
|
end
|
@@ -7991,6 +8045,11 @@ module Aws::Glue
|
|
7991
8045
|
# The evaluated rule.
|
7992
8046
|
# @return [String]
|
7993
8047
|
#
|
8048
|
+
# @!attribute [rw] rule_metrics
|
8049
|
+
# A map containing metrics associated with the evaluation of the rule
|
8050
|
+
# based on row-level results.
|
8051
|
+
# @return [Hash<String,Float>]
|
8052
|
+
#
|
7994
8053
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DataQualityRuleResult AWS API Documentation
|
7995
8054
|
#
|
7996
8055
|
class DataQualityRuleResult < Struct.new(
|
@@ -7999,8 +8058,9 @@ module Aws::Glue
|
|
7999
8058
|
:evaluation_message,
|
8000
8059
|
:result,
|
8001
8060
|
:evaluated_metrics,
|
8002
|
-
:evaluated_rule
|
8003
|
-
|
8061
|
+
:evaluated_rule,
|
8062
|
+
:rule_metrics)
|
8063
|
+
SENSITIVE = [:description, :evaluation_message, :evaluated_metrics, :evaluated_rule, :rule_metrics]
|
8004
8064
|
include Aws::Structure
|
8005
8065
|
end
|
8006
8066
|
|
@@ -11930,6 +11990,8 @@ module Aws::Glue
|
|
11930
11990
|
include Aws::Structure
|
11931
11991
|
end
|
11932
11992
|
|
11993
|
+
# The response for the data quality result.
|
11994
|
+
#
|
11933
11995
|
# @!attribute [rw] result_id
|
11934
11996
|
# A unique result ID for the data quality result.
|
11935
11997
|
# @return [String]
|
@@ -11994,6 +12056,12 @@ module Aws::Glue
|
|
11994
12056
|
# observations generated after evaluating the rules and analyzers.
|
11995
12057
|
# @return [Array<Types::DataQualityObservation>]
|
11996
12058
|
#
|
12059
|
+
# @!attribute [rw] aggregated_metrics
|
12060
|
+
# A summary of `DataQualityAggregatedMetrics` objects showing the
|
12061
|
+
# total counts of processed rows and rules, including their pass/fail
|
12062
|
+
# statistics based on row-level results.
|
12063
|
+
# @return [Types::DataQualityAggregatedMetrics]
|
12064
|
+
#
|
11997
12065
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityResultResponse AWS API Documentation
|
11998
12066
|
#
|
11999
12067
|
class GetDataQualityResultResponse < Struct.new(
|
@@ -12010,7 +12078,8 @@ module Aws::Glue
|
|
12010
12078
|
:ruleset_evaluation_run_id,
|
12011
12079
|
:rule_results,
|
12012
12080
|
:analyzer_results,
|
12013
|
-
:observations
|
12081
|
+
:observations,
|
12082
|
+
:aggregated_metrics)
|
12014
12083
|
SENSITIVE = []
|
12015
12084
|
include Aws::Structure
|
12016
12085
|
end
|
@@ -12027,6 +12096,8 @@ module Aws::Glue
|
|
12027
12096
|
include Aws::Structure
|
12028
12097
|
end
|
12029
12098
|
|
12099
|
+
# The response for the Data Quality rule recommendation run.
|
12100
|
+
#
|
12030
12101
|
# @!attribute [rw] run_id
|
12031
12102
|
# The unique run identifier associated with this run.
|
12032
12103
|
# @return [String]
|
@@ -12223,6 +12294,8 @@ module Aws::Glue
|
|
12223
12294
|
include Aws::Structure
|
12224
12295
|
end
|
12225
12296
|
|
12297
|
+
# Returns the data quality ruleset response.
|
12298
|
+
#
|
12226
12299
|
# @!attribute [rw] name
|
12227
12300
|
# The name of the ruleset.
|
12228
12301
|
# @return [String]
|
@@ -24197,6 +24270,8 @@ module Aws::Glue
|
|
24197
24270
|
#
|
24198
24271
|
class StartCrawlerScheduleResponse < Aws::EmptyStructure; end
|
24199
24272
|
|
24273
|
+
# The request of the Data Quality rule recommendation request.
|
24274
|
+
#
|
24200
24275
|
# @!attribute [rw] data_source
|
24201
24276
|
# The data source (Glue table) associated with this run.
|
24202
24277
|
# @return [Types::DataSource]
|
data/lib/aws-sdk-glue.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -3461,6 +3461,7 @@ module Aws
|
|
3461
3461
|
def rule_results: () -> ::Array[Types::DataQualityRuleResult]
|
3462
3462
|
def analyzer_results: () -> ::Array[Types::DataQualityAnalyzerResult]
|
3463
3463
|
def observations: () -> ::Array[Types::DataQualityObservation]
|
3464
|
+
def aggregated_metrics: () -> Types::DataQualityAggregatedMetrics
|
3464
3465
|
end
|
3465
3466
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_data_quality_result-instance_method
|
3466
3467
|
def get_data_quality_result: (
|
data/sig/types.rbs
CHANGED
@@ -1727,6 +1727,16 @@ module Aws::Glue
|
|
1727
1727
|
SENSITIVE: []
|
1728
1728
|
end
|
1729
1729
|
|
1730
|
+
class DataQualityAggregatedMetrics
|
1731
|
+
attr_accessor total_rows_processed: ::Float
|
1732
|
+
attr_accessor total_rows_passed: ::Float
|
1733
|
+
attr_accessor total_rows_failed: ::Float
|
1734
|
+
attr_accessor total_rules_processed: ::Float
|
1735
|
+
attr_accessor total_rules_passed: ::Float
|
1736
|
+
attr_accessor total_rules_failed: ::Float
|
1737
|
+
SENSITIVE: []
|
1738
|
+
end
|
1739
|
+
|
1730
1740
|
class DataQualityAnalyzerResult
|
1731
1741
|
attr_accessor name: ::String
|
1732
1742
|
attr_accessor description: ::String
|
@@ -1777,6 +1787,7 @@ module Aws::Glue
|
|
1777
1787
|
attr_accessor rule_results: ::Array[Types::DataQualityRuleResult]
|
1778
1788
|
attr_accessor analyzer_results: ::Array[Types::DataQualityAnalyzerResult]
|
1779
1789
|
attr_accessor observations: ::Array[Types::DataQualityObservation]
|
1790
|
+
attr_accessor aggregated_metrics: Types::DataQualityAggregatedMetrics
|
1780
1791
|
SENSITIVE: []
|
1781
1792
|
end
|
1782
1793
|
|
@@ -1820,7 +1831,8 @@ module Aws::Glue
|
|
1820
1831
|
attr_accessor result: ("PASS" | "FAIL" | "ERROR")
|
1821
1832
|
attr_accessor evaluated_metrics: ::Hash[::String, ::Float]
|
1822
1833
|
attr_accessor evaluated_rule: ::String
|
1823
|
-
|
1834
|
+
attr_accessor rule_metrics: ::Hash[::String, ::Float]
|
1835
|
+
SENSITIVE: [:description, :evaluation_message, :evaluated_metrics, :evaluated_rule, :rule_metrics]
|
1824
1836
|
end
|
1825
1837
|
|
1826
1838
|
class DataQualityRulesetEvaluationRunDescription
|
@@ -2959,6 +2971,7 @@ module Aws::Glue
|
|
2959
2971
|
attr_accessor rule_results: ::Array[Types::DataQualityRuleResult]
|
2960
2972
|
attr_accessor analyzer_results: ::Array[Types::DataQualityAnalyzerResult]
|
2961
2973
|
attr_accessor observations: ::Array[Types::DataQualityObservation]
|
2974
|
+
attr_accessor aggregated_metrics: Types::DataQualityAggregatedMetrics
|
2962
2975
|
SENSITIVE: []
|
2963
2976
|
end
|
2964
2977
|
|