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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


11678
11679
11680
11681
11682
11683
# File 'lib/aws-sdk-datazone/types.rb', line 11678

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>)


11678
11679
11680
11681
11682
11683
# File 'lib/aws-sdk-datazone/types.rb', line 11678

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