Class: Aws::GlueDataBrew::Types::Threshold
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::Threshold
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
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.
3732 3733 3734 3735 3736 3737 3738 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3732 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.
3732 3733 3734 3735 3736 3737 3738 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 3732 class Threshold < Struct.new( :value, :type, :unit) SENSITIVE = [] include Aws::Structure end |