aws-sdk-glue 1.81.0 → 1.82.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: a18b5ff7c504f20592ebd36b607457b474e0f86eb4b96ae4a83b8ba8638e896a
4
- data.tar.gz: 026b94ad61d647725a281900412eff102775e4acaa1b3105360fa2e42f06ca18
3
+ metadata.gz: f59cacdbabcb16853d4b8df4af91baacc81b291717759f280308b24ab7e6702c
4
+ data.tar.gz: 7ac67a4a1a6968a08a273136e8be65b79a224eecdba86d281094d1da7d699e8f
5
5
  SHA512:
6
- metadata.gz: 3d7b31ead1625ff3d0b80b84292710e1e7d2c95cd9f43417fed863b85b73cc20c3f5b6e57238561ca210276a5240af2c91646bf46fbebd01ae38bbd49a63dfee
7
- data.tar.gz: ded82959a4ac78d2e3df3fb3fb613a550f5d4dc4a444f8b32d83004506c4fbee2850b9c8c295feb5205e3194bc3bbe8aba90459fc3720fc87c91e87d1486b5af
6
+ metadata.gz: a299f4cf5265e9ab3e4fce8eb3feb48790fe8b79e601933323360be6fb16b55c06fb205151b310e9f13b874e95fd304fe9ab24a1161786c80d735a88fe9c6917
7
+ data.tar.gz: 7c4b18be099fe91710d306616d2d7c5c3a660bc7036b851ef3f71ec018c1ec7e20f48e13e4eeedb37e9d7caedffe3fa178a43d6c42c549deeb089867047d8f4f
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-glue/customizations'
48
48
  # @!group service
49
49
  module Aws::Glue
50
50
 
51
- GEM_VERSION = '1.81.0'
51
+ GEM_VERSION = '1.82.0'
52
52
 
53
53
  end
@@ -5254,6 +5254,9 @@ module Aws::Glue
5254
5254
  # resp.evaluation_metrics.find_matches_metrics.confusion_matrix.num_false_positives #=> Integer
5255
5255
  # resp.evaluation_metrics.find_matches_metrics.confusion_matrix.num_true_negatives #=> Integer
5256
5256
  # resp.evaluation_metrics.find_matches_metrics.confusion_matrix.num_false_negatives #=> Integer
5257
+ # resp.evaluation_metrics.find_matches_metrics.column_importances #=> Array
5258
+ # resp.evaluation_metrics.find_matches_metrics.column_importances[0].column_name #=> String
5259
+ # resp.evaluation_metrics.find_matches_metrics.column_importances[0].importance #=> Float
5257
5260
  # resp.label_count #=> Integer
5258
5261
  # resp.schema #=> Array
5259
5262
  # resp.schema[0].name #=> String
@@ -5359,6 +5362,9 @@ module Aws::Glue
5359
5362
  # resp.transforms[0].evaluation_metrics.find_matches_metrics.confusion_matrix.num_false_positives #=> Integer
5360
5363
  # resp.transforms[0].evaluation_metrics.find_matches_metrics.confusion_matrix.num_true_negatives #=> Integer
5361
5364
  # resp.transforms[0].evaluation_metrics.find_matches_metrics.confusion_matrix.num_false_negatives #=> Integer
5365
+ # resp.transforms[0].evaluation_metrics.find_matches_metrics.column_importances #=> Array
5366
+ # resp.transforms[0].evaluation_metrics.find_matches_metrics.column_importances[0].column_name #=> String
5367
+ # resp.transforms[0].evaluation_metrics.find_matches_metrics.column_importances[0].importance #=> Float
5362
5368
  # resp.transforms[0].label_count #=> Integer
5363
5369
  # resp.transforms[0].schema #=> Array
5364
5370
  # resp.transforms[0].schema[0].name #=> String
@@ -10590,7 +10596,7 @@ module Aws::Glue
10590
10596
  params: params,
10591
10597
  config: config)
10592
10598
  context[:gem_name] = 'aws-sdk-glue'
10593
- context[:gem_version] = '1.81.0'
10599
+ context[:gem_version] = '1.82.0'
10594
10600
  Seahorse::Client::Request.new(handlers, context)
10595
10601
  end
10596
10602
 
@@ -98,6 +98,8 @@ module Aws::Glue
98
98
  Column = Shapes::StructureShape.new(name: 'Column')
99
99
  ColumnError = Shapes::StructureShape.new(name: 'ColumnError')
100
100
  ColumnErrors = Shapes::ListShape.new(name: 'ColumnErrors')
101
+ ColumnImportance = Shapes::StructureShape.new(name: 'ColumnImportance')
102
+ ColumnImportanceList = Shapes::ListShape.new(name: 'ColumnImportanceList')
101
103
  ColumnList = Shapes::ListShape.new(name: 'ColumnList')
102
104
  ColumnNameString = Shapes::StringShape.new(name: 'ColumnNameString')
103
105
  ColumnStatistics = Shapes::StructureShape.new(name: 'ColumnStatistics')
@@ -1037,6 +1039,12 @@ module Aws::Glue
1037
1039
 
1038
1040
  ColumnErrors.member = Shapes::ShapeRef.new(shape: ColumnError)
1039
1041
 
1042
+ ColumnImportance.add_member(:column_name, Shapes::ShapeRef.new(shape: NameString, location_name: "ColumnName"))
1043
+ ColumnImportance.add_member(:importance, Shapes::ShapeRef.new(shape: GenericBoundedDouble, location_name: "Importance"))
1044
+ ColumnImportance.struct_class = Types::ColumnImportance
1045
+
1046
+ ColumnImportanceList.member = Shapes::ShapeRef.new(shape: ColumnImportance)
1047
+
1040
1048
  ColumnList.member = Shapes::ShapeRef.new(shape: Column)
1041
1049
 
1042
1050
  ColumnStatistics.add_member(:column_name, Shapes::ShapeRef.new(shape: NameString, required: true, location_name: "ColumnName"))
@@ -1740,6 +1748,7 @@ module Aws::Glue
1740
1748
  FindMatchesMetrics.add_member(:recall, Shapes::ShapeRef.new(shape: GenericBoundedDouble, location_name: "Recall"))
1741
1749
  FindMatchesMetrics.add_member(:f1, Shapes::ShapeRef.new(shape: GenericBoundedDouble, location_name: "F1"))
1742
1750
  FindMatchesMetrics.add_member(:confusion_matrix, Shapes::ShapeRef.new(shape: ConfusionMatrix, location_name: "ConfusionMatrix"))
1751
+ FindMatchesMetrics.add_member(:column_importances, Shapes::ShapeRef.new(shape: ColumnImportanceList, location_name: "ColumnImportances"))
1743
1752
  FindMatchesMetrics.struct_class = Types::FindMatchesMetrics
1744
1753
 
1745
1754
  FindMatchesParameters.add_member(:primary_key_column_name, Shapes::ShapeRef.new(shape: ColumnNameString, location_name: "PrimaryKeyColumnName"))
@@ -1506,6 +1506,30 @@ module Aws::Glue
1506
1506
  include Aws::Structure
1507
1507
  end
1508
1508
 
1509
+ # A structure containing the column name and column importance score for
1510
+ # a column.
1511
+ #
1512
+ # Column importance helps you understand how columns contribute to your
1513
+ # model, by identifying which columns in your records are more important
1514
+ # than others.
1515
+ #
1516
+ # @!attribute [rw] column_name
1517
+ # The name of a column.
1518
+ # @return [String]
1519
+ #
1520
+ # @!attribute [rw] importance
1521
+ # The column importance score for the column, as a decimal.
1522
+ # @return [Float]
1523
+ #
1524
+ # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/ColumnImportance AWS API Documentation
1525
+ #
1526
+ class ColumnImportance < Struct.new(
1527
+ :column_name,
1528
+ :importance)
1529
+ SENSITIVE = []
1530
+ include Aws::Structure
1531
+ end
1532
+
1509
1533
  # Represents the generated column-level statistics for a table or
1510
1534
  # partition.
1511
1535
  #
@@ -6422,6 +6446,11 @@ module Aws::Glue
6422
6446
  # [1]: https://en.wikipedia.org/wiki/Confusion_matrix
6423
6447
  # @return [Types::ConfusionMatrix]
6424
6448
  #
6449
+ # @!attribute [rw] column_importances
6450
+ # A list of `ColumnImportance` structures containing column importance
6451
+ # metrics, sorted in order of descending importance.
6452
+ # @return [Array<Types::ColumnImportance>]
6453
+ #
6425
6454
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/FindMatchesMetrics AWS API Documentation
6426
6455
  #
6427
6456
  class FindMatchesMetrics < Struct.new(
@@ -6429,7 +6458,8 @@ module Aws::Glue
6429
6458
  :precision,
6430
6459
  :recall,
6431
6460
  :f1,
6432
- :confusion_matrix)
6461
+ :confusion_matrix,
6462
+ :column_importances)
6433
6463
  SENSITIVE = []
6434
6464
  include Aws::Structure
6435
6465
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.81.0
4
+ version: 1.82.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-21 00:00:00.000000000 Z
11
+ date: 2020-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core