Struct aws_sdk_lexmodelsv2::input::update_slot_input::Builder
source · [−]pub struct Builder { /* private fields */ }Expand description
A builder for UpdateSlotInput.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn slot_id(self, input: impl Into<String>) -> Self
pub fn slot_id(self, input: impl Into<String>) -> Self
The unique identifier for the slot to update.
sourcepub fn set_slot_id(self, input: Option<String>) -> Self
pub fn set_slot_id(self, input: Option<String>) -> Self
The unique identifier for the slot to update.
sourcepub fn set_slot_name(self, input: Option<String>) -> Self
pub fn set_slot_name(self, input: Option<String>) -> Self
The new name for the slot.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The new description for the slot.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The new description for the slot.
sourcepub fn slot_type_id(self, input: impl Into<String>) -> Self
pub fn slot_type_id(self, input: impl Into<String>) -> Self
The unique identifier of the new slot type to associate with this slot.
sourcepub fn set_slot_type_id(self, input: Option<String>) -> Self
pub fn set_slot_type_id(self, input: Option<String>) -> Self
The unique identifier of the new slot type to associate with this slot.
sourcepub fn value_elicitation_setting(
self,
input: SlotValueElicitationSetting
) -> Self
pub fn value_elicitation_setting(
self,
input: SlotValueElicitationSetting
) -> Self
A new set of prompts that Amazon Lex sends to the user to elicit a response the provides a value for the slot.
sourcepub fn set_value_elicitation_setting(
self,
input: Option<SlotValueElicitationSetting>
) -> Self
pub fn set_value_elicitation_setting(
self,
input: Option<SlotValueElicitationSetting>
) -> Self
A new set of prompts that Amazon Lex sends to the user to elicit a response the provides a value for the slot.
sourcepub fn obfuscation_setting(self, input: ObfuscationSetting) -> Self
pub fn obfuscation_setting(self, input: ObfuscationSetting) -> Self
New settings that determine how slot values are formatted in Amazon CloudWatch logs.
sourcepub fn set_obfuscation_setting(self, input: Option<ObfuscationSetting>) -> Self
pub fn set_obfuscation_setting(self, input: Option<ObfuscationSetting>) -> Self
New settings that determine how slot values are formatted in Amazon CloudWatch logs.
sourcepub fn bot_id(self, input: impl Into<String>) -> Self
pub fn bot_id(self, input: impl Into<String>) -> Self
The unique identifier of the bot that contains the slot.
sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The unique identifier of the bot that contains the slot.
sourcepub fn bot_version(self, input: impl Into<String>) -> Self
pub fn bot_version(self, input: impl Into<String>) -> Self
The version of the bot that contains the slot. Must always be DRAFT.
sourcepub fn set_bot_version(self, input: Option<String>) -> Self
pub fn set_bot_version(self, input: Option<String>) -> Self
The version of the bot that contains the slot. Must always be DRAFT.
sourcepub fn locale_id(self, input: impl Into<String>) -> Self
pub fn locale_id(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_locale_id(self, input: Option<String>) -> Self
pub fn set_locale_id(self, input: Option<String>) -> Self
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.
sourcepub fn intent_id(self, input: impl Into<String>) -> Self
pub fn intent_id(self, input: impl Into<String>) -> Self
The identifier of the intent that contains the slot.
sourcepub fn set_intent_id(self, input: Option<String>) -> Self
pub fn set_intent_id(self, input: Option<String>) -> Self
The identifier of the intent that contains the slot.
sourcepub fn multiple_values_setting(self, input: MultipleValuesSetting) -> Self
pub fn multiple_values_setting(self, input: MultipleValuesSetting) -> Self
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.
sourcepub fn set_multiple_values_setting(
self,
input: Option<MultipleValuesSetting>
) -> Self
pub fn set_multiple_values_setting(
self,
input: Option<MultipleValuesSetting>
) -> Self
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.
sourcepub fn build(self) -> Result<UpdateSlotInput, BuildError>
pub fn build(self) -> Result<UpdateSlotInput, BuildError>
Consumes the builder and constructs a UpdateSlotInput.