Class: Aws::LexModelsV2::Types::SlotDefaultValueSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::SlotDefaultValueSpecification
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Note:
When making an API call, you may pass SlotDefaultValueSpecification data as a hash:
{
default_value_list: [ # required
{
default_value: "SlotDefaultValueString", # required
},
],
}
Defines a list of values that Amazon Lex should use as the default value for a slot.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_value_list ⇒ Array<Types::SlotDefaultValue>
A list of default values.
Instance Attribute Details
#default_value_list ⇒ Array<Types::SlotDefaultValue>
A list of default values. Amazon Lex chooses the default value to use in the order that they are presented in the list.
9844 9845 9846 9847 9848 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 9844 class SlotDefaultValueSpecification < Struct.new( :default_value_list) SENSITIVE = [] include Aws::Structure end |