Class: Aws::Glue::Types::NullCheckBoxList

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

Instance Attribute Details

#is_emptyBoolean

Specifies that an empty string is considered as a null value.

Returns:

  • (Boolean)


16271
16272
16273
16274
16275
16276
16277
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16271

class NullCheckBoxList < Struct.new(
  :is_empty,
  :is_null_string,
  :is_neg_one)
  SENSITIVE = []
  include Aws::Structure
end

#is_neg_oneBoolean

Specifies that an integer value of -1 is considered as a null value.

Returns:

  • (Boolean)


16271
16272
16273
16274
16275
16276
16277
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16271

class NullCheckBoxList < Struct.new(
  :is_empty,
  :is_null_string,
  :is_neg_one)
  SENSITIVE = []
  include Aws::Structure
end

#is_null_stringBoolean

Specifies that a value spelling out the word 'null' is considered as a null value.

Returns:

  • (Boolean)


16271
16272
16273
16274
16275
16276
16277
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16271

class NullCheckBoxList < Struct.new(
  :is_empty,
  :is_null_string,
  :is_neg_one)
  SENSITIVE = []
  include Aws::Structure
end