Class: Aws::GlueDataBrew::Types::ColumnStatisticsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::ColumnStatisticsConfiguration
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass ColumnStatisticsConfiguration data as a hash:
{
selectors: [
{
regex: "ColumnName",
name: "ColumnName",
},
],
statistics: { # required
included_statistics: ["Statistic"],
overrides: [
{
statistic: "Statistic", # required
parameters: { # required
"ParameterName" => "ParameterValue",
},
},
],
},
}
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.
163 164 165 166 167 168 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 163 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.
163 164 165 166 167 168 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 163 class ColumnStatisticsConfiguration < Struct.new( :selectors, :statistics) SENSITIVE = [] include Aws::Structure end |