Class: Aws::DataZone::Types::NotInExpression

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

Overview

Specifies that a value is not in the expression.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_nameString

The name of the column.

Returns:

  • (String)


11222
11223
11224
11225
11226
11227
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 11222

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

#valuesArray<String>

The value that might not be in the expression.

Returns:

  • (Array<String>)


11222
11223
11224
11225
11226
11227
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 11222

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