aws-sdk-glue 1.186.0 → 1.187.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 +287 -1
- data/lib/aws-sdk-glue/client_api.rb +225 -0
- data/lib/aws-sdk-glue/endpoints.rb +84 -0
- data/lib/aws-sdk-glue/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-glue/types.rb +519 -6
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +94 -0
- data/sig/types.rbs +152 -3
- metadata +2 -2
data/lib/aws-sdk-glue/types.rb
CHANGED
@@ -368,6 +368,30 @@ module Aws::Glue
|
|
368
368
|
include Aws::Structure
|
369
369
|
end
|
370
370
|
|
371
|
+
# A failed annotation.
|
372
|
+
#
|
373
|
+
# @!attribute [rw] profile_id
|
374
|
+
# The Profile ID for the failed annotation.
|
375
|
+
# @return [String]
|
376
|
+
#
|
377
|
+
# @!attribute [rw] statistic_id
|
378
|
+
# The Statistic ID for the failed annotation.
|
379
|
+
# @return [String]
|
380
|
+
#
|
381
|
+
# @!attribute [rw] failure_reason
|
382
|
+
# The reason why the annotation failed.
|
383
|
+
# @return [String]
|
384
|
+
#
|
385
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/AnnotationError AWS API Documentation
|
386
|
+
#
|
387
|
+
class AnnotationError < Struct.new(
|
388
|
+
:profile_id,
|
389
|
+
:statistic_id,
|
390
|
+
:failure_reason)
|
391
|
+
SENSITIVE = []
|
392
|
+
include Aws::Structure
|
393
|
+
end
|
394
|
+
|
371
395
|
# Specifies a transform that maps data property keys in the data source
|
372
396
|
# to data property keys in the data target. You can rename keys, modify
|
373
397
|
# the data types for keys, and choose which keys to drop from the
|
@@ -1225,6 +1249,35 @@ module Aws::Glue
|
|
1225
1249
|
include Aws::Structure
|
1226
1250
|
end
|
1227
1251
|
|
1252
|
+
# @!attribute [rw] inclusion_annotations
|
1253
|
+
# A list of `DatapointInclusionAnnotation`'s.
|
1254
|
+
# @return [Array<Types::DatapointInclusionAnnotation>]
|
1255
|
+
#
|
1256
|
+
# @!attribute [rw] client_token
|
1257
|
+
# Client Token.
|
1258
|
+
# @return [String]
|
1259
|
+
#
|
1260
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchPutDataQualityStatisticAnnotationRequest AWS API Documentation
|
1261
|
+
#
|
1262
|
+
class BatchPutDataQualityStatisticAnnotationRequest < Struct.new(
|
1263
|
+
:inclusion_annotations,
|
1264
|
+
:client_token)
|
1265
|
+
SENSITIVE = []
|
1266
|
+
include Aws::Structure
|
1267
|
+
end
|
1268
|
+
|
1269
|
+
# @!attribute [rw] failed_inclusion_annotations
|
1270
|
+
# A list of `AnnotationError`'s.
|
1271
|
+
# @return [Array<Types::AnnotationError>]
|
1272
|
+
#
|
1273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/BatchPutDataQualityStatisticAnnotationResponse AWS API Documentation
|
1274
|
+
#
|
1275
|
+
class BatchPutDataQualityStatisticAnnotationResponse < Struct.new(
|
1276
|
+
:failed_inclusion_annotations)
|
1277
|
+
SENSITIVE = []
|
1278
|
+
include Aws::Structure
|
1279
|
+
end
|
1280
|
+
|
1228
1281
|
# Records an error that occurred when attempting to stop a specified job
|
1229
1282
|
# run.
|
1230
1283
|
#
|
@@ -4465,6 +4518,11 @@ module Aws::Glue
|
|
4465
4518
|
# A target table associated with the data quality ruleset.
|
4466
4519
|
# @return [Types::DataQualityTargetTable]
|
4467
4520
|
#
|
4521
|
+
# @!attribute [rw] data_quality_security_configuration
|
4522
|
+
# The name of the security configuration created with the data quality
|
4523
|
+
# encryption option.
|
4524
|
+
# @return [String]
|
4525
|
+
#
|
4468
4526
|
# @!attribute [rw] client_token
|
4469
4527
|
# Used for idempotency and is recommended to be set to a random ID
|
4470
4528
|
# (such as a UUID) to avoid creating or starting multiple instances of
|
@@ -4479,6 +4537,7 @@ module Aws::Glue
|
|
4479
4537
|
:ruleset,
|
4480
4538
|
:tags,
|
4481
4539
|
:target_table,
|
4540
|
+
:data_quality_security_configuration,
|
4482
4541
|
:client_token)
|
4483
4542
|
SENSITIVE = []
|
4484
4543
|
include Aws::Structure
|
@@ -6456,7 +6515,7 @@ module Aws::Glue
|
|
6456
6515
|
:description,
|
6457
6516
|
:evaluation_message,
|
6458
6517
|
:evaluated_metrics)
|
6459
|
-
SENSITIVE = []
|
6518
|
+
SENSITIVE = [:description, :evaluation_message, :evaluated_metrics]
|
6460
6519
|
include Aws::Structure
|
6461
6520
|
end
|
6462
6521
|
|
@@ -6535,7 +6594,7 @@ module Aws::Glue
|
|
6535
6594
|
class DataQualityObservation < Struct.new(
|
6536
6595
|
:description,
|
6537
6596
|
:metric_based_observation)
|
6538
|
-
SENSITIVE = []
|
6597
|
+
SENSITIVE = [:description]
|
6539
6598
|
include Aws::Structure
|
6540
6599
|
end
|
6541
6600
|
|
@@ -6545,6 +6604,10 @@ module Aws::Glue
|
|
6545
6604
|
# A unique result ID for the data quality result.
|
6546
6605
|
# @return [String]
|
6547
6606
|
#
|
6607
|
+
# @!attribute [rw] profile_id
|
6608
|
+
# The Profile ID for the data quality result.
|
6609
|
+
# @return [String]
|
6610
|
+
#
|
6548
6611
|
# @!attribute [rw] score
|
6549
6612
|
# An aggregate data quality score. Represents the ratio of rules that
|
6550
6613
|
# passed to the total number of rules.
|
@@ -6605,6 +6668,7 @@ module Aws::Glue
|
|
6605
6668
|
#
|
6606
6669
|
class DataQualityResult < Struct.new(
|
6607
6670
|
:result_id,
|
6671
|
+
:profile_id,
|
6608
6672
|
:score,
|
6609
6673
|
:data_source,
|
6610
6674
|
:ruleset_name,
|
@@ -6765,6 +6829,10 @@ module Aws::Glue
|
|
6765
6829
|
# A map of metrics associated with the evaluation of the rule.
|
6766
6830
|
# @return [Hash<String,Float>]
|
6767
6831
|
#
|
6832
|
+
# @!attribute [rw] evaluated_rule
|
6833
|
+
# The evaluated rule.
|
6834
|
+
# @return [String]
|
6835
|
+
#
|
6768
6836
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DataQualityRuleResult AWS API Documentation
|
6769
6837
|
#
|
6770
6838
|
class DataQualityRuleResult < Struct.new(
|
@@ -6772,8 +6840,9 @@ module Aws::Glue
|
|
6772
6840
|
:description,
|
6773
6841
|
:evaluation_message,
|
6774
6842
|
:result,
|
6775
|
-
:evaluated_metrics
|
6776
|
-
|
6843
|
+
:evaluated_metrics,
|
6844
|
+
:evaluated_rule)
|
6845
|
+
SENSITIVE = [:description, :evaluation_message, :evaluated_metrics, :evaluated_rule]
|
6777
6846
|
include Aws::Structure
|
6778
6847
|
end
|
6779
6848
|
|
@@ -7096,6 +7165,30 @@ module Aws::Glue
|
|
7096
7165
|
include Aws::Structure
|
7097
7166
|
end
|
7098
7167
|
|
7168
|
+
# An Inclusion Annotation.
|
7169
|
+
#
|
7170
|
+
# @!attribute [rw] profile_id
|
7171
|
+
# The ID of the data quality profile the statistic belongs to.
|
7172
|
+
# @return [String]
|
7173
|
+
#
|
7174
|
+
# @!attribute [rw] statistic_id
|
7175
|
+
# The Statistic ID.
|
7176
|
+
# @return [String]
|
7177
|
+
#
|
7178
|
+
# @!attribute [rw] inclusion_annotation
|
7179
|
+
# The inclusion annotation value to apply to the statistic.
|
7180
|
+
# @return [String]
|
7181
|
+
#
|
7182
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DatapointInclusionAnnotation AWS API Documentation
|
7183
|
+
#
|
7184
|
+
class DatapointInclusionAnnotation < Struct.new(
|
7185
|
+
:profile_id,
|
7186
|
+
:statistic_id,
|
7187
|
+
:inclusion_annotation)
|
7188
|
+
SENSITIVE = []
|
7189
|
+
include Aws::Structure
|
7190
|
+
end
|
7191
|
+
|
7099
7192
|
# A structure representing the datatype of the value.
|
7100
7193
|
#
|
7101
7194
|
# @!attribute [rw] id
|
@@ -9862,6 +9955,84 @@ module Aws::Glue
|
|
9862
9955
|
include Aws::Structure
|
9863
9956
|
end
|
9864
9957
|
|
9958
|
+
# @!attribute [rw] statistic_id
|
9959
|
+
# The Statistic ID.
|
9960
|
+
# @return [String]
|
9961
|
+
#
|
9962
|
+
# @!attribute [rw] profile_id
|
9963
|
+
# The Profile ID.
|
9964
|
+
# @return [String]
|
9965
|
+
#
|
9966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityModelRequest AWS API Documentation
|
9967
|
+
#
|
9968
|
+
class GetDataQualityModelRequest < Struct.new(
|
9969
|
+
:statistic_id,
|
9970
|
+
:profile_id)
|
9971
|
+
SENSITIVE = []
|
9972
|
+
include Aws::Structure
|
9973
|
+
end
|
9974
|
+
|
9975
|
+
# @!attribute [rw] status
|
9976
|
+
# The training status of the data quality model.
|
9977
|
+
# @return [String]
|
9978
|
+
#
|
9979
|
+
# @!attribute [rw] started_on
|
9980
|
+
# The timestamp when the data quality model training started.
|
9981
|
+
# @return [Time]
|
9982
|
+
#
|
9983
|
+
# @!attribute [rw] completed_on
|
9984
|
+
# The timestamp when the data quality model training completed.
|
9985
|
+
# @return [Time]
|
9986
|
+
#
|
9987
|
+
# @!attribute [rw] failure_reason
|
9988
|
+
# The training failure reason.
|
9989
|
+
# @return [String]
|
9990
|
+
#
|
9991
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityModelResponse AWS API Documentation
|
9992
|
+
#
|
9993
|
+
class GetDataQualityModelResponse < Struct.new(
|
9994
|
+
:status,
|
9995
|
+
:started_on,
|
9996
|
+
:completed_on,
|
9997
|
+
:failure_reason)
|
9998
|
+
SENSITIVE = []
|
9999
|
+
include Aws::Structure
|
10000
|
+
end
|
10001
|
+
|
10002
|
+
# @!attribute [rw] statistic_id
|
10003
|
+
# The Statistic ID.
|
10004
|
+
# @return [String]
|
10005
|
+
#
|
10006
|
+
# @!attribute [rw] profile_id
|
10007
|
+
# The Profile ID.
|
10008
|
+
# @return [String]
|
10009
|
+
#
|
10010
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityModelResultRequest AWS API Documentation
|
10011
|
+
#
|
10012
|
+
class GetDataQualityModelResultRequest < Struct.new(
|
10013
|
+
:statistic_id,
|
10014
|
+
:profile_id)
|
10015
|
+
SENSITIVE = []
|
10016
|
+
include Aws::Structure
|
10017
|
+
end
|
10018
|
+
|
10019
|
+
# @!attribute [rw] completed_on
|
10020
|
+
# The timestamp when the data quality model training completed.
|
10021
|
+
# @return [Time]
|
10022
|
+
#
|
10023
|
+
# @!attribute [rw] model
|
10024
|
+
# A list of `StatisticModelResult`
|
10025
|
+
# @return [Array<Types::StatisticModelResult>]
|
10026
|
+
#
|
10027
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityModelResultResponse AWS API Documentation
|
10028
|
+
#
|
10029
|
+
class GetDataQualityModelResultResponse < Struct.new(
|
10030
|
+
:completed_on,
|
10031
|
+
:model)
|
10032
|
+
SENSITIVE = []
|
10033
|
+
include Aws::Structure
|
10034
|
+
end
|
10035
|
+
|
9865
10036
|
# @!attribute [rw] result_id
|
9866
10037
|
# A unique result ID for the data quality result.
|
9867
10038
|
# @return [String]
|
@@ -9878,6 +10049,10 @@ module Aws::Glue
|
|
9878
10049
|
# A unique result ID for the data quality result.
|
9879
10050
|
# @return [String]
|
9880
10051
|
#
|
10052
|
+
# @!attribute [rw] profile_id
|
10053
|
+
# The Profile ID for the data quality result.
|
10054
|
+
# @return [String]
|
10055
|
+
#
|
9881
10056
|
# @!attribute [rw] score
|
9882
10057
|
# An aggregate data quality score. Represents the ratio of rules that
|
9883
10058
|
# passed to the total number of rules.
|
@@ -9938,6 +10113,7 @@ module Aws::Glue
|
|
9938
10113
|
#
|
9939
10114
|
class GetDataQualityResultResponse < Struct.new(
|
9940
10115
|
:result_id,
|
10116
|
+
:profile_id,
|
9941
10117
|
:score,
|
9942
10118
|
:data_source,
|
9943
10119
|
:ruleset_name,
|
@@ -10024,6 +10200,11 @@ module Aws::Glue
|
|
10024
10200
|
# The name of the ruleset that was created by the run.
|
10025
10201
|
# @return [String]
|
10026
10202
|
#
|
10203
|
+
# @!attribute [rw] data_quality_security_configuration
|
10204
|
+
# The name of the security configuration created with the data quality
|
10205
|
+
# encryption option.
|
10206
|
+
# @return [String]
|
10207
|
+
#
|
10027
10208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityRuleRecommendationRunResponse AWS API Documentation
|
10028
10209
|
#
|
10029
10210
|
class GetDataQualityRuleRecommendationRunResponse < Struct.new(
|
@@ -10039,7 +10220,8 @@ module Aws::Glue
|
|
10039
10220
|
:completed_on,
|
10040
10221
|
:execution_time,
|
10041
10222
|
:recommended_ruleset,
|
10042
|
-
:created_ruleset_name
|
10223
|
+
:created_ruleset_name,
|
10224
|
+
:data_quality_security_configuration)
|
10043
10225
|
SENSITIVE = []
|
10044
10226
|
include Aws::Structure
|
10045
10227
|
end
|
@@ -10188,6 +10370,11 @@ module Aws::Glue
|
|
10188
10370
|
# generated to link the two together.
|
10189
10371
|
# @return [String]
|
10190
10372
|
#
|
10373
|
+
# @!attribute [rw] data_quality_security_configuration
|
10374
|
+
# The name of the security configuration created with the data quality
|
10375
|
+
# encryption option.
|
10376
|
+
# @return [String]
|
10377
|
+
#
|
10191
10378
|
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDataQualityRulesetResponse AWS API Documentation
|
10192
10379
|
#
|
10193
10380
|
class GetDataQualityRulesetResponse < Struct.new(
|
@@ -10197,7 +10384,8 @@ module Aws::Glue
|
|
10197
10384
|
:target_table,
|
10198
10385
|
:created_on,
|
10199
10386
|
:last_modified_on,
|
10200
|
-
:recommendation_run_id
|
10387
|
+
:recommendation_run_id,
|
10388
|
+
:data_quality_security_configuration)
|
10201
10389
|
SENSITIVE = []
|
10202
10390
|
include Aws::Structure
|
10203
10391
|
end
|
@@ -15496,6 +15684,104 @@ module Aws::Glue
|
|
15496
15684
|
include Aws::Structure
|
15497
15685
|
end
|
15498
15686
|
|
15687
|
+
# @!attribute [rw] statistic_id
|
15688
|
+
# The Statistic ID.
|
15689
|
+
# @return [String]
|
15690
|
+
#
|
15691
|
+
# @!attribute [rw] profile_id
|
15692
|
+
# The Profile ID.
|
15693
|
+
# @return [String]
|
15694
|
+
#
|
15695
|
+
# @!attribute [rw] timestamp_filter
|
15696
|
+
# A timestamp filter.
|
15697
|
+
# @return [Types::TimestampFilter]
|
15698
|
+
#
|
15699
|
+
# @!attribute [rw] max_results
|
15700
|
+
# The maximum number of results to return in this request.
|
15701
|
+
# @return [Integer]
|
15702
|
+
#
|
15703
|
+
# @!attribute [rw] next_token
|
15704
|
+
# A pagination token to retrieve the next set of results.
|
15705
|
+
# @return [String]
|
15706
|
+
#
|
15707
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListDataQualityStatisticAnnotationsRequest AWS API Documentation
|
15708
|
+
#
|
15709
|
+
class ListDataQualityStatisticAnnotationsRequest < Struct.new(
|
15710
|
+
:statistic_id,
|
15711
|
+
:profile_id,
|
15712
|
+
:timestamp_filter,
|
15713
|
+
:max_results,
|
15714
|
+
:next_token)
|
15715
|
+
SENSITIVE = []
|
15716
|
+
include Aws::Structure
|
15717
|
+
end
|
15718
|
+
|
15719
|
+
# @!attribute [rw] annotations
|
15720
|
+
# A list of `StatisticAnnotation` applied to the Statistic
|
15721
|
+
# @return [Array<Types::StatisticAnnotation>]
|
15722
|
+
#
|
15723
|
+
# @!attribute [rw] next_token
|
15724
|
+
# A pagination token to retrieve the next set of results.
|
15725
|
+
# @return [String]
|
15726
|
+
#
|
15727
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListDataQualityStatisticAnnotationsResponse AWS API Documentation
|
15728
|
+
#
|
15729
|
+
class ListDataQualityStatisticAnnotationsResponse < Struct.new(
|
15730
|
+
:annotations,
|
15731
|
+
:next_token)
|
15732
|
+
SENSITIVE = []
|
15733
|
+
include Aws::Structure
|
15734
|
+
end
|
15735
|
+
|
15736
|
+
# @!attribute [rw] statistic_id
|
15737
|
+
# The Statistic ID.
|
15738
|
+
# @return [String]
|
15739
|
+
#
|
15740
|
+
# @!attribute [rw] profile_id
|
15741
|
+
# The Profile ID.
|
15742
|
+
# @return [String]
|
15743
|
+
#
|
15744
|
+
# @!attribute [rw] timestamp_filter
|
15745
|
+
# A timestamp filter.
|
15746
|
+
# @return [Types::TimestampFilter]
|
15747
|
+
#
|
15748
|
+
# @!attribute [rw] max_results
|
15749
|
+
# The maximum number of results to return in this request.
|
15750
|
+
# @return [Integer]
|
15751
|
+
#
|
15752
|
+
# @!attribute [rw] next_token
|
15753
|
+
# A pagination token to request the next page of results.
|
15754
|
+
# @return [String]
|
15755
|
+
#
|
15756
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListDataQualityStatisticsRequest AWS API Documentation
|
15757
|
+
#
|
15758
|
+
class ListDataQualityStatisticsRequest < Struct.new(
|
15759
|
+
:statistic_id,
|
15760
|
+
:profile_id,
|
15761
|
+
:timestamp_filter,
|
15762
|
+
:max_results,
|
15763
|
+
:next_token)
|
15764
|
+
SENSITIVE = []
|
15765
|
+
include Aws::Structure
|
15766
|
+
end
|
15767
|
+
|
15768
|
+
# @!attribute [rw] statistics
|
15769
|
+
# A `StatisticSummaryList`.
|
15770
|
+
# @return [Array<Types::StatisticSummary>]
|
15771
|
+
#
|
15772
|
+
# @!attribute [rw] next_token
|
15773
|
+
# A pagination token to request the next page of results.
|
15774
|
+
# @return [String]
|
15775
|
+
#
|
15776
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ListDataQualityStatisticsResponse AWS API Documentation
|
15777
|
+
#
|
15778
|
+
class ListDataQualityStatisticsResponse < Struct.new(
|
15779
|
+
:statistics,
|
15780
|
+
:next_token)
|
15781
|
+
SENSITIVE = []
|
15782
|
+
include Aws::Structure
|
15783
|
+
end
|
15784
|
+
|
15499
15785
|
# @!attribute [rw] next_token
|
15500
15786
|
# A continuation token, if this is a continuation request.
|
15501
15787
|
# @return [String]
|
@@ -16509,6 +16795,10 @@ module Aws::Glue
|
|
16509
16795
|
# observation.
|
16510
16796
|
# @return [String]
|
16511
16797
|
#
|
16798
|
+
# @!attribute [rw] statistic_id
|
16799
|
+
# The Statistic ID.
|
16800
|
+
# @return [String]
|
16801
|
+
#
|
16512
16802
|
# @!attribute [rw] metric_values
|
16513
16803
|
# An object of type `DataQualityMetricValues` representing the
|
16514
16804
|
# analysis of the data quality metric value.
|
@@ -16523,6 +16813,7 @@ module Aws::Glue
|
|
16523
16813
|
#
|
16524
16814
|
class MetricBasedObservation < Struct.new(
|
16525
16815
|
:metric_name,
|
16816
|
+
:statistic_id,
|
16526
16817
|
:metric_values,
|
16527
16818
|
:new_rules)
|
16528
16819
|
SENSITIVE = []
|
@@ -17504,6 +17795,29 @@ module Aws::Glue
|
|
17504
17795
|
#
|
17505
17796
|
class PutDataCatalogEncryptionSettingsResponse < Aws::EmptyStructure; end
|
17506
17797
|
|
17798
|
+
# @!attribute [rw] profile_id
|
17799
|
+
# The ID of the data quality monitoring profile to annotate.
|
17800
|
+
# @return [String]
|
17801
|
+
#
|
17802
|
+
# @!attribute [rw] inclusion_annotation
|
17803
|
+
# The inclusion annotation value to apply to the profile.
|
17804
|
+
# @return [String]
|
17805
|
+
#
|
17806
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/PutDataQualityProfileAnnotationRequest AWS API Documentation
|
17807
|
+
#
|
17808
|
+
class PutDataQualityProfileAnnotationRequest < Struct.new(
|
17809
|
+
:profile_id,
|
17810
|
+
:inclusion_annotation)
|
17811
|
+
SENSITIVE = []
|
17812
|
+
include Aws::Structure
|
17813
|
+
end
|
17814
|
+
|
17815
|
+
# Left blank.
|
17816
|
+
#
|
17817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/PutDataQualityProfileAnnotationResponse AWS API Documentation
|
17818
|
+
#
|
17819
|
+
class PutDataQualityProfileAnnotationResponse < Aws::EmptyStructure; end
|
17820
|
+
|
17507
17821
|
# @!attribute [rw] policy_in_json
|
17508
17822
|
# Contains the policy document to set, in JSON format.
|
17509
17823
|
# @return [String]
|
@@ -18322,6 +18636,25 @@ module Aws::Glue
|
|
18322
18636
|
include Aws::Structure
|
18323
18637
|
end
|
18324
18638
|
|
18639
|
+
# A run identifier.
|
18640
|
+
#
|
18641
|
+
# @!attribute [rw] run_id
|
18642
|
+
# The Run ID.
|
18643
|
+
# @return [String]
|
18644
|
+
#
|
18645
|
+
# @!attribute [rw] job_run_id
|
18646
|
+
# The Job Run ID.
|
18647
|
+
# @return [String]
|
18648
|
+
#
|
18649
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/RunIdentifier AWS API Documentation
|
18650
|
+
#
|
18651
|
+
class RunIdentifier < Struct.new(
|
18652
|
+
:run_id,
|
18653
|
+
:job_run_id)
|
18654
|
+
SENSITIVE = []
|
18655
|
+
include Aws::Structure
|
18656
|
+
end
|
18657
|
+
|
18325
18658
|
# Metrics for the optimizer run.
|
18326
18659
|
#
|
18327
18660
|
# @!attribute [rw] number_of_bytes_compacted
|
@@ -20587,6 +20920,11 @@ module Aws::Glue
|
|
20587
20920
|
# A name for the ruleset.
|
20588
20921
|
# @return [String]
|
20589
20922
|
#
|
20923
|
+
# @!attribute [rw] data_quality_security_configuration
|
20924
|
+
# The name of the security configuration created with the data quality
|
20925
|
+
# encryption option.
|
20926
|
+
# @return [String]
|
20927
|
+
#
|
20590
20928
|
# @!attribute [rw] client_token
|
20591
20929
|
# Used for idempotency and is recommended to be set to a random ID
|
20592
20930
|
# (such as a UUID) to avoid creating or starting multiple instances of
|
@@ -20601,6 +20939,7 @@ module Aws::Glue
|
|
20601
20939
|
:number_of_workers,
|
20602
20940
|
:timeout,
|
20603
20941
|
:created_ruleset_name,
|
20942
|
+
:data_quality_security_configuration,
|
20604
20943
|
:client_token)
|
20605
20944
|
SENSITIVE = []
|
20606
20945
|
include Aws::Structure
|
@@ -21179,6 +21518,140 @@ module Aws::Glue
|
|
21179
21518
|
include Aws::Structure
|
21180
21519
|
end
|
21181
21520
|
|
21521
|
+
# A Statistic Annotation.
|
21522
|
+
#
|
21523
|
+
# @!attribute [rw] profile_id
|
21524
|
+
# The Profile ID.
|
21525
|
+
# @return [String]
|
21526
|
+
#
|
21527
|
+
# @!attribute [rw] statistic_id
|
21528
|
+
# The Statistic ID.
|
21529
|
+
# @return [String]
|
21530
|
+
#
|
21531
|
+
# @!attribute [rw] statistic_recorded_on
|
21532
|
+
# The timestamp when the annotated statistic was recorded.
|
21533
|
+
# @return [Time]
|
21534
|
+
#
|
21535
|
+
# @!attribute [rw] inclusion_annotation
|
21536
|
+
# The inclusion annotation applied to the statistic.
|
21537
|
+
# @return [Types::TimestampedInclusionAnnotation]
|
21538
|
+
#
|
21539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StatisticAnnotation AWS API Documentation
|
21540
|
+
#
|
21541
|
+
class StatisticAnnotation < Struct.new(
|
21542
|
+
:profile_id,
|
21543
|
+
:statistic_id,
|
21544
|
+
:statistic_recorded_on,
|
21545
|
+
:inclusion_annotation)
|
21546
|
+
SENSITIVE = []
|
21547
|
+
include Aws::Structure
|
21548
|
+
end
|
21549
|
+
|
21550
|
+
# The statistic model result.
|
21551
|
+
#
|
21552
|
+
# @!attribute [rw] lower_bound
|
21553
|
+
# The lower bound.
|
21554
|
+
# @return [Float]
|
21555
|
+
#
|
21556
|
+
# @!attribute [rw] upper_bound
|
21557
|
+
# The upper bound.
|
21558
|
+
# @return [Float]
|
21559
|
+
#
|
21560
|
+
# @!attribute [rw] predicted_value
|
21561
|
+
# The predicted value.
|
21562
|
+
# @return [Float]
|
21563
|
+
#
|
21564
|
+
# @!attribute [rw] actual_value
|
21565
|
+
# The actual value.
|
21566
|
+
# @return [Float]
|
21567
|
+
#
|
21568
|
+
# @!attribute [rw] date
|
21569
|
+
# The date.
|
21570
|
+
# @return [Time]
|
21571
|
+
#
|
21572
|
+
# @!attribute [rw] inclusion_annotation
|
21573
|
+
# The inclusion annotation.
|
21574
|
+
# @return [String]
|
21575
|
+
#
|
21576
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StatisticModelResult AWS API Documentation
|
21577
|
+
#
|
21578
|
+
class StatisticModelResult < Struct.new(
|
21579
|
+
:lower_bound,
|
21580
|
+
:upper_bound,
|
21581
|
+
:predicted_value,
|
21582
|
+
:actual_value,
|
21583
|
+
:date,
|
21584
|
+
:inclusion_annotation)
|
21585
|
+
SENSITIVE = []
|
21586
|
+
include Aws::Structure
|
21587
|
+
end
|
21588
|
+
|
21589
|
+
# Summary information about a statistic.
|
21590
|
+
#
|
21591
|
+
# @!attribute [rw] statistic_id
|
21592
|
+
# The Statistic ID.
|
21593
|
+
# @return [String]
|
21594
|
+
#
|
21595
|
+
# @!attribute [rw] profile_id
|
21596
|
+
# The Profile ID.
|
21597
|
+
# @return [String]
|
21598
|
+
#
|
21599
|
+
# @!attribute [rw] run_identifier
|
21600
|
+
# The Run Identifier
|
21601
|
+
# @return [Types::RunIdentifier]
|
21602
|
+
#
|
21603
|
+
# @!attribute [rw] statistic_name
|
21604
|
+
# The name of the statistic.
|
21605
|
+
# @return [String]
|
21606
|
+
#
|
21607
|
+
# @!attribute [rw] double_value
|
21608
|
+
# The value of the statistic.
|
21609
|
+
# @return [Float]
|
21610
|
+
#
|
21611
|
+
# @!attribute [rw] evaluation_level
|
21612
|
+
# The evaluation level of the statistic. Possible values: `Dataset`,
|
21613
|
+
# `Column`, `Multicolumn`.
|
21614
|
+
# @return [String]
|
21615
|
+
#
|
21616
|
+
# @!attribute [rw] columns_referenced
|
21617
|
+
# The list of columns referenced by the statistic.
|
21618
|
+
# @return [Array<String>]
|
21619
|
+
#
|
21620
|
+
# @!attribute [rw] referenced_datasets
|
21621
|
+
# The list of datasets referenced by the statistic.
|
21622
|
+
# @return [Array<String>]
|
21623
|
+
#
|
21624
|
+
# @!attribute [rw] statistic_properties
|
21625
|
+
# A `StatisticPropertiesMap`, which contains a `NameString` and
|
21626
|
+
# `DescriptionString`
|
21627
|
+
# @return [Hash<String,String>]
|
21628
|
+
#
|
21629
|
+
# @!attribute [rw] recorded_on
|
21630
|
+
# The timestamp when the statistic was recorded.
|
21631
|
+
# @return [Time]
|
21632
|
+
#
|
21633
|
+
# @!attribute [rw] inclusion_annotation
|
21634
|
+
# The inclusion annotation for the statistic.
|
21635
|
+
# @return [Types::TimestampedInclusionAnnotation]
|
21636
|
+
#
|
21637
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/StatisticSummary AWS API Documentation
|
21638
|
+
#
|
21639
|
+
class StatisticSummary < Struct.new(
|
21640
|
+
:statistic_id,
|
21641
|
+
:profile_id,
|
21642
|
+
:run_identifier,
|
21643
|
+
:statistic_name,
|
21644
|
+
:double_value,
|
21645
|
+
:evaluation_level,
|
21646
|
+
:columns_referenced,
|
21647
|
+
:referenced_datasets,
|
21648
|
+
:statistic_properties,
|
21649
|
+
:recorded_on,
|
21650
|
+
:inclusion_annotation)
|
21651
|
+
SENSITIVE = [:statistic_properties]
|
21652
|
+
include Aws::Structure
|
21653
|
+
end
|
21654
|
+
|
21182
21655
|
# @!attribute [rw] database_name
|
21183
21656
|
# The name of the database where the table resides.
|
21184
21657
|
# @return [String]
|
@@ -22083,6 +22556,46 @@ module Aws::Glue
|
|
22083
22556
|
include Aws::Structure
|
22084
22557
|
end
|
22085
22558
|
|
22559
|
+
# A timestamp filter.
|
22560
|
+
#
|
22561
|
+
# @!attribute [rw] recorded_before
|
22562
|
+
# The timestamp before which statistics should be included in the
|
22563
|
+
# results.
|
22564
|
+
# @return [Time]
|
22565
|
+
#
|
22566
|
+
# @!attribute [rw] recorded_after
|
22567
|
+
# The timestamp after which statistics should be included in the
|
22568
|
+
# results.
|
22569
|
+
# @return [Time]
|
22570
|
+
#
|
22571
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TimestampFilter AWS API Documentation
|
22572
|
+
#
|
22573
|
+
class TimestampFilter < Struct.new(
|
22574
|
+
:recorded_before,
|
22575
|
+
:recorded_after)
|
22576
|
+
SENSITIVE = []
|
22577
|
+
include Aws::Structure
|
22578
|
+
end
|
22579
|
+
|
22580
|
+
# A timestamped inclusion annotation.
|
22581
|
+
#
|
22582
|
+
# @!attribute [rw] value
|
22583
|
+
# The inclusion annotation value.
|
22584
|
+
# @return [String]
|
22585
|
+
#
|
22586
|
+
# @!attribute [rw] last_modified_on
|
22587
|
+
# The timestamp when the inclusion annotation was last modified.
|
22588
|
+
# @return [Time]
|
22589
|
+
#
|
22590
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/TimestampedInclusionAnnotation AWS API Documentation
|
22591
|
+
#
|
22592
|
+
class TimestampedInclusionAnnotation < Struct.new(
|
22593
|
+
:value,
|
22594
|
+
:last_modified_on)
|
22595
|
+
SENSITIVE = []
|
22596
|
+
include Aws::Structure
|
22597
|
+
end
|
22598
|
+
|
22086
22599
|
# Specifies the parameters in the config file of the dynamic transform.
|
22087
22600
|
#
|
22088
22601
|
# @!attribute [rw] name
|