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

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


13957
13958
13959
13960
13961
13962
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13957

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)


13957
13958
13959
13960
13961
13962
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13957

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