Class: Aws::LexModelBuildingService::Types::SlotDefaultValue

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#default_valueString

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."

Returns:

  • (String)


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