Class: Aws::LexModelsV2::Types::SlotValueOverride
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::SlotValueOverride
- 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
-
#shape ⇒ String
When the shape value is ‘List`, it indicates that the `values` field contains a list of slot values.
-
#value ⇒ Types::SlotValue
The current value of the slot.
-
#values ⇒ Array<Types::SlotValueOverride>
A list of one or more values that the user provided for the slot.
Instance Attribute Details
#shape ⇒ String
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.
12769 12770 12771 12772 12773 12774 12775 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 12769 class SlotValueOverride < Struct.new( :shape, :value, :values) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Types::SlotValue
The current value of the slot.
12769 12770 12771 12772 12773 12774 12775 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 12769 class SlotValueOverride < Struct.new( :shape, :value, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<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.”
12769 12770 12771 12772 12773 12774 12775 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 12769 class SlotValueOverride < Struct.new( :shape, :value, :values) SENSITIVE = [] include Aws::Structure end |