Class: Aws::DataZone::Types::EqualToExpression

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

Overview

Specifies whether the value is equal to an expression.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_nameString

The name of the column.

Returns:

  • (String)


5938
5939
5940
5941
5942
5943
# File 'lib/aws-sdk-datazone/types.rb', line 5938

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

#valueString

The value that might be equal to an expression.

Returns:

  • (String)


5938
5939
5940
5941
5942
5943
# File 'lib/aws-sdk-datazone/types.rb', line 5938

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