Class: Aws::DataZone::Types::GreaterThanOrEqualToExpression

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

Overview

Specifies whether the value is greater than or equal to an expression.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_nameString

The name of the column.

Returns:

  • (String)


10679
10680
10681
10682
10683
10684
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10679

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

#valueString

The value that might be greater than or equal to an expression.

Returns:

  • (String)


10679
10680
10681
10682
10683
10684
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10679

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