Class: Aws::GlueDataBrew::Types::StatisticsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::StatisticsConfiguration
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass StatisticsConfiguration data as a hash:
{
included_statistics: ["Statistic"],
overrides: [
{
statistic: "Statistic", # required
parameters: { # required
"ParameterName" => "ParameterValue",
},
},
],
}
Configuration of evaluations for a profile job. This configuration can be used to select evaluations and override the parameters of selected evaluations.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#included_statistics ⇒ Array<String>
List of included evaluations.
-
#overrides ⇒ Array<Types::StatisticOverride>
List of overrides for evaluations.
Instance Attribute Details
#included_statistics ⇒ Array<String>
List of included evaluations. When the list is undefined, all supported evaluations will be included.
4740 4741 4742 4743 4744 4745 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4740 class StatisticsConfiguration < Struct.new( :included_statistics, :overrides) SENSITIVE = [] include Aws::Structure end |
#overrides ⇒ Array<Types::StatisticOverride>
List of overrides for evaluations.
4740 4741 4742 4743 4744 4745 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4740 class StatisticsConfiguration < Struct.new( :included_statistics, :overrides) SENSITIVE = [] include Aws::Structure end |