Class: Aws::GlueDataBrew::Types::Threshold

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-gluedatabrew/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

Instance Attribute Details

#typeString

The type of a threshold. Used for comparison of an actual count of rows that satisfy the rule to the threshold value.

Returns:

  • (String)


3732
3733
3734
3735
3736
3737
3738
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3732

class Threshold < Struct.new(
  :value,
  :type,
  :unit)
  SENSITIVE = []
  include Aws::Structure
end

#unitString

Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size used for validation.

Returns:

  • (String)


3732
3733
3734
3735
3736
3737
3738
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3732

class Threshold < Struct.new(
  :value,
  :type,
  :unit)
  SENSITIVE = []
  include Aws::Structure
end

#valueFloat

The value of a threshold.

Returns:

  • (Float)


3732
3733
3734
3735
3736
3737
3738
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3732

class Threshold < Struct.new(
  :value,
  :type,
  :unit)
  SENSITIVE = []
  include Aws::Structure
end