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)


13976
13977
13978
13979
13980
13981
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13976

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


13976
13977
13978
13979
13980
13981
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 13976

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