Class: Aws::Glue::Types::NullCheckBoxList
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::NullCheckBoxList
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Represents whether certain values are recognized as null values for removal.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#is_empty ⇒ Boolean
Specifies that an empty string is considered as a null value.
-
#is_neg_one ⇒ Boolean
Specifies that an integer value of -1 is considered as a null value.
-
#is_null_string ⇒ Boolean
Specifies that a value spelling out the word ‘null’ is considered as a null value.
Instance Attribute Details
#is_empty ⇒ Boolean
Specifies that an empty string is considered as a null value.
17481 17482 17483 17484 17485 17486 17487 |
# File 'lib/aws-sdk-glue/types.rb', line 17481 class NullCheckBoxList < Struct.new( :is_empty, :is_null_string, :is_neg_one) SENSITIVE = [] include Aws::Structure end |
#is_neg_one ⇒ Boolean
Specifies that an integer value of -1 is considered as a null value.
17481 17482 17483 17484 17485 17486 17487 |
# File 'lib/aws-sdk-glue/types.rb', line 17481 class NullCheckBoxList < Struct.new( :is_empty, :is_null_string, :is_neg_one) SENSITIVE = [] include Aws::Structure end |
#is_null_string ⇒ Boolean
Specifies that a value spelling out the word ‘null’ is considered as a null value.
17481 17482 17483 17484 17485 17486 17487 |
# File 'lib/aws-sdk-glue/types.rb', line 17481 class NullCheckBoxList < Struct.new( :is_empty, :is_null_string, :is_neg_one) SENSITIVE = [] include Aws::Structure end |