Class: Aws::LexModelBuildingService::Types::SlotDefaultValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::SlotDefaultValue
- Defined in:
- gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
A default value for a slot.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_value ⇒ String
The default value for the slot.
Instance Attribute Details
#default_value ⇒ String
The default value for the slot. You can specify one of the following:
#context-name.slot-name
- The slot value "slot-name" in the context "context-name."\{attribute\}
- The slot value of the session attribute "attribute."'value'
- The discrete value "value."
4098 4099 4100 4101 4102 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 4098 class SlotDefaultValue < Struct.new( :default_value) SENSITIVE = [] include Aws::Structure end |