Class: Aws::LexModelsV2::Types::SlotTypeFilter

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

Overview

Filters the response from the ‘ListSlotTypes` operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the field to use for filtering.

Returns:

  • (String)


12483
12484
12485
12486
12487
12488
12489
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 12483

class SlotTypeFilter < Struct.new(
  :name,
  :values,
  :operator)
  SENSITIVE = []
  include Aws::Structure
end

#operatorString

The operator to use for the filter. Specify ‘EQ` when the `ListSlotTypes` operation should return only aliases that equal the specified value. Specify `CO` when the `ListSlotTypes` operation should return aliases that contain the specified value.

Returns:

  • (String)


12483
12484
12485
12486
12487
12488
12489
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 12483

class SlotTypeFilter < Struct.new(
  :name,
  :values,
  :operator)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

The value to use to filter the response.

Returns:

  • (Array<String>)


12483
12484
12485
12486
12487
12488
12489
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 12483

class SlotTypeFilter < Struct.new(
  :name,
  :values,
  :operator)
  SENSITIVE = []
  include Aws::Structure
end