Class: Aws::LexModelsV2::Types::SlotValueOverride

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

Overview

The slot values that Amazon Lex uses when it sets slot values in a dialog step.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#shapeString

When the shape value is ‘List`, it indicates that the `values` field contains a list of slot values. When the value is `Scalar`, it indicates that the `value` field contains a single value.

Returns:

  • (String)


12696
12697
12698
12699
12700
12701
12702
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 12696

class SlotValueOverride < Struct.new(
  :shape,
  :value,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valueTypes::SlotValue

The current value of the slot.

Returns:



12696
12697
12698
12699
12700
12701
12702
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 12696

class SlotValueOverride < Struct.new(
  :shape,
  :value,
  :values)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<Types::SlotValueOverride>

A list of one or more values that the user provided for the slot. For example, for a slot that elicits pizza toppings, the values might be “pepperoni” and “pineapple.”

Returns:



12696
12697
12698
12699
12700
12701
12702
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 12696

class SlotValueOverride < Struct.new(
  :shape,
  :value,
  :values)
  SENSITIVE = []
  include Aws::Structure
end