Class: Aws::DataZone::Types::NotLikeExpression

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-datazone/types.rb

Overview

Specifies that a value might be not like the expression.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_nameString

The name of the column.

Returns:

  • (String)


11697
11698
11699
11700
11701
11702
# File 'lib/aws-sdk-datazone/types.rb', line 11697

class NotLikeExpression < Struct.new(
  :column_name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value that might not be like the expression.

Returns:

  • (String)


11697
11698
11699
11700
11701
11702
# File 'lib/aws-sdk-datazone/types.rb', line 11697

class NotLikeExpression < Struct.new(
  :column_name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end