Class: Aws::DataZone::Types::InExpression

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

Overview

Specifies whether values are in the expression.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_nameString

The name of the column.

Returns:

  • (String)


9139
9140
9141
9142
9143
9144
# File 'lib/aws-sdk-datazone/types.rb', line 9139

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

#valuesArray<String>

The values that might be in the expression.

Returns:

  • (Array<String>)


9139
9140
9141
9142
9143
9144
# File 'lib/aws-sdk-datazone/types.rb', line 9139

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