Class: Aws::DataZone::Types::NotEqualToExpression

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

Overview

Specifies that a value is not equal to the expression.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_nameString

The name of the column.

Returns:

  • (String)


11659
11660
11661
11662
11663
11664
# File 'lib/aws-sdk-datazone/types.rb', line 11659

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

#valueString

The value that might not be equal to the expression.

Returns:

  • (String)


11659
11660
11661
11662
11663
11664
# File 'lib/aws-sdk-datazone/types.rb', line 11659

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