Class: Aws::GlueDataBrew::Types::Threshold
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::Threshold
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass Threshold data as a hash:
{
value: 1.0, # required
type: "GREATER_THAN_OR_EQUAL", # accepts GREATER_THAN_OR_EQUAL, LESS_THAN_OR_EQUAL, GREATER_THAN, LESS_THAN
unit: "COUNT", # accepts COUNT, PERCENTAGE
}
The threshold used with a non-aggregate check expression. The non-aggregate check expression will be applied to each row in a specific column. Then the threshold will be used to determine whether the validation succeeds.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#type ⇒ String
The type of a threshold.
-
#unit ⇒ String
Unit of threshold value.
-
#value ⇒ Float
The value of a threshold.
Instance Attribute Details
#type ⇒ String
The type of a threshold. Used for comparison of an actual count of rows that satisfy the rule to the threshold value.
4847 4848 4849 4850 4851 4852 4853 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4847 class Threshold < Struct.new( :value, :type, :unit) SENSITIVE = [] include Aws::Structure end |
#unit ⇒ String
Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size used for validation.
4847 4848 4849 4850 4851 4852 4853 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4847 class Threshold < Struct.new( :value, :type, :unit) SENSITIVE = [] include Aws::Structure end |