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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/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)


10887
10888
10889
10890
10891
10892
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10887

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


10887
10888
10889
10890
10891
10892
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10887

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