Class: Aws::DataZone::Types::LikeExpression

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

Overview

Specifies that a value is like the expression.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#column_nameString

The name of the column.

Returns:

  • (String)


9260
9261
9262
9263
9264
9265
# File 'lib/aws-sdk-datazone/types.rb', line 9260

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

#valueString

The value that might be like the expression.

Returns:

  • (String)


9260
9261
9262
9263
9264
9265
# File 'lib/aws-sdk-datazone/types.rb', line 9260

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