#[non_exhaustive]pub struct UpdateSlotInputBuilder { /* private fields */ }Expand description
A builder for UpdateSlotInput.
Implementations§
source§impl UpdateSlotInputBuilder
impl UpdateSlotInputBuilder
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 sub_slot_setting(self, input: SubSlotSetting) -> Self
pub fn sub_slot_setting(self, input: SubSlotSetting) -> Self
Specifications for the constituent sub slots and the expression for the composite slot.
sourcepub fn set_sub_slot_setting(self, input: Option<SubSlotSetting>) -> Self
pub fn set_sub_slot_setting(self, input: Option<SubSlotSetting>) -> Self
Specifications for the constituent sub slots and the expression for the composite slot.
sourcepub fn build(self) -> Result<UpdateSlotInput, BuildError>
pub fn build(self) -> Result<UpdateSlotInput, BuildError>
Consumes the builder and constructs a UpdateSlotInput.
Trait Implementations§
source§impl Clone for UpdateSlotInputBuilder
impl Clone for UpdateSlotInputBuilder
source§fn clone(&self) -> UpdateSlotInputBuilder
fn clone(&self) -> UpdateSlotInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateSlotInputBuilder
impl Debug for UpdateSlotInputBuilder
source§impl Default for UpdateSlotInputBuilder
impl Default for UpdateSlotInputBuilder
source§fn default() -> UpdateSlotInputBuilder
fn default() -> UpdateSlotInputBuilder
source§impl PartialEq<UpdateSlotInputBuilder> for UpdateSlotInputBuilder
impl PartialEq<UpdateSlotInputBuilder> for UpdateSlotInputBuilder
source§fn eq(&self, other: &UpdateSlotInputBuilder) -> bool
fn eq(&self, other: &UpdateSlotInputBuilder) -> bool
self and other values to be equal, and is used
by ==.