Class: Aws::GlueDataBrew::Types::StatisticOverride
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::StatisticOverride
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass StatisticOverride data as a hash:
{
statistic: "Statistic", # required
parameters: { # required
"ParameterName" => "ParameterValue",
},
}
Override of a particular evaluation for a profile job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parameters ⇒ Hash<String,String>
A map that includes overrides of an evaluation’s parameters.
-
#statistic ⇒ String
The name of an evaluation.
Instance Attribute Details
#parameters ⇒ Hash<String,String>
A map that includes overrides of an evaluation’s parameters.
4703 4704 4705 4706 4707 4708 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4703 class StatisticOverride < Struct.new( :statistic, :parameters) SENSITIVE = [] include Aws::Structure end |
#statistic ⇒ String
The name of an evaluation
4703 4704 4705 4706 4707 4708 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4703 class StatisticOverride < Struct.new( :statistic, :parameters) SENSITIVE = [] include Aws::Structure end |