Class: Aws::LexModelsV2::Types::IntentOverride

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

Overview

Override settings to configure the intent state.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the intent. Only required when you're switching intents.

Returns:

  • (String)


8342
8343
8344
8345
8346
8347
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 8342

class IntentOverride < Struct.new(
  :name,
  :slots)
  SENSITIVE = []
  include Aws::Structure
end

#slotsHash<String,Types::SlotValueOverride>

A map of all of the slot value overrides for the intent. The name of the slot maps to the value of the slot. Slots that are not included in the map aren't overridden.

Returns:



8342
8343
8344
8345
8346
8347
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 8342

class IntentOverride < Struct.new(
  :name,
  :slots)
  SENSITIVE = []
  include Aws::Structure
end