Class: Aws::DataZone::Types::GreaterThanExpression

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

Overview

Specifies whether the value is greater than an expression.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_nameString

The name of the column.

Returns:

  • (String)


9002
9003
9004
9005
9006
9007
# File 'lib/aws-sdk-datazone/types.rb', line 9002

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

#valueString

The value that might be greater than an expression.

Returns:

  • (String)


9002
9003
9004
9005
9006
9007
# File 'lib/aws-sdk-datazone/types.rb', line 9002

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