Class: Aws::DataZone::Types::NotInExpression
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::NotInExpression
- 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
-
#column_name ⇒ String
The name of the column.
-
#values ⇒ Array<String>
The value that might not be in the expression.
Instance Attribute Details
#column_name ⇒ String
The name of the column.
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 |
#values ⇒ Array<String>
The value that might not be in the expression.
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 |