CreateSlotTypeRequest
import type { CreateSlotTypeRequest } from "https://aws-api-gyr5wj9zj0fg.deno.dev/v0.2/services/lexmodelsv2.ts";interface CreateSlotTypeRequest {
botId: string;
botVersion: string;
description?: string | null;
localeId: string;
parentSlotTypeSignature?: string | null;
slotTypeName: string;
slotTypeValues?: SlotTypeValue[] | null;
valueSelectionSetting: SlotValueSelectionSetting;
}