Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateSlotRequest

import type { UpdateSlotRequest } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";
interface UpdateSlotRequest {
botId: string;
botVersion: string;
description?: string | null;
intentId: string;
localeId: string;
multipleValuesSetting?: MultipleValuesSetting | null;
obfuscationSetting?: ObfuscationSetting | null;
slotId: string;
slotName: string;
slotTypeId?: string | null;
subSlotSetting?: SubSlotSetting | null;
valueElicitationSetting: SlotValueElicitationSetting;
}

§Properties

§
botId: string
[src]

The unique identifier of the bot that contains the slot.

§
botVersion: string
[src]

The version of the bot that contains the slot. Must always be DRAFT.

§
description?: string | null
[src]

The new description for the slot.

§
intentId: string
[src]

The identifier of the intent that contains the slot.

§
localeId: string
[src]

The identifier of the language and locale that contains the slot. The string must match one of the supported locales. For more information, see Supported languages.

§
multipleValuesSetting?: MultipleValuesSetting | null
[src]

Determines whether the slot accepts multiple values in one response. Multiple value slots are only available in the en-US locale. If you set this value to true in any other locale, Amazon Lex throws a ValidationException.

If the multipleValuesSetting is not set, the default value is false.

§
obfuscationSetting?: ObfuscationSetting | null
[src]

New settings that determine how slot values are formatted in Amazon CloudWatch logs.

§
slotId: string
[src]

The unique identifier for the slot to update.

§
slotName: string
[src]

The new name for the slot.

§
slotTypeId?: string | null
[src]

The unique identifier of the new slot type to associate with this slot.

§
subSlotSetting?: SubSlotSetting | null
[src]

Specifications for the constituent sub slots and the expression for the composite slot.

§
valueElicitationSetting: SlotValueElicitationSetting
[src]

A new set of prompts that Amazon Lex sends to the user to elicit a response the provides a value for the slot.