Class: Aws::GlueDataBrew::Types::ColumnStatisticsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::ColumnStatisticsConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
Configuration for column evaluations for a profile job. ColumnStatisticsConfiguration can be used to select evaluations and override parameters of evaluations for particular columns.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#selectors ⇒ Array<Types::ColumnSelector>
List of column selectors.
-
#statistics ⇒ Types::StatisticsConfiguration
Configuration for evaluations.
Instance Attribute Details
#selectors ⇒ Array<Types::ColumnSelector>
List of column selectors. Selectors can be used to select columns from the dataset. When selectors are undefined, configuration will be applied to all supported columns.
117 118 119 120 121 122 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 117 class ColumnStatisticsConfiguration < Struct.new( :selectors, :statistics) SENSITIVE = [] include Aws::Structure end |
#statistics ⇒ Types::StatisticsConfiguration
Configuration for evaluations. Statistics can be used to select evaluations and override parameters of evaluations.
117 118 119 120 121 122 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 117 class ColumnStatisticsConfiguration < Struct.new( :selectors, :statistics) SENSITIVE = [] include Aws::Structure end |