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