#[non_exhaustive]pub struct CreateSlotInputBuilder { /* private fields */ }Expand description
A builder for CreateSlotInput.
Implementations§
source§impl CreateSlotInputBuilder
impl CreateSlotInputBuilder
sourcepub fn slot_name(self, input: impl Into<String>) -> Self
pub fn slot_name(self, input: impl Into<String>) -> Self
The name of the slot. Slot names must be unique within the bot that contains the slot.
This field is required.sourcepub fn set_slot_name(self, input: Option<String>) -> Self
pub fn set_slot_name(self, input: Option<String>) -> Self
The name of the slot. Slot names must be unique within the bot that contains the slot.
sourcepub fn get_slot_name(&self) -> &Option<String>
pub fn get_slot_name(&self) -> &Option<String>
The name of the slot. Slot names must be unique within the bot that contains the slot.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the slot. Use this to help identify the slot in lists.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the slot. Use this to help identify the slot in lists.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the slot. Use this to help identify the slot in lists.
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 for the slot type associated with this slot. The slot type determines the values that can be entered into the 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 for the slot type associated with this slot. The slot type determines the values that can be entered into the slot.
sourcepub fn get_slot_type_id(&self) -> &Option<String>
pub fn get_slot_type_id(&self) -> &Option<String>
The unique identifier for the slot type associated with this slot. The slot type determines the values that can be entered into the slot.
sourcepub fn value_elicitation_setting(
self,
input: SlotValueElicitationSetting
) -> Self
pub fn value_elicitation_setting( self, input: SlotValueElicitationSetting ) -> Self
Specifies prompts that Amazon Lex sends to the user to elicit a response that provides the value for the slot.
This field is required.sourcepub fn set_value_elicitation_setting(
self,
input: Option<SlotValueElicitationSetting>
) -> Self
pub fn set_value_elicitation_setting( self, input: Option<SlotValueElicitationSetting> ) -> Self
Specifies prompts that Amazon Lex sends to the user to elicit a response that provides the value for the slot.
sourcepub fn get_value_elicitation_setting(
&self
) -> &Option<SlotValueElicitationSetting>
pub fn get_value_elicitation_setting( &self ) -> &Option<SlotValueElicitationSetting>
Specifies prompts that Amazon Lex sends to the user to elicit a response that provides the value for the slot.
sourcepub fn obfuscation_setting(self, input: ObfuscationSetting) -> Self
pub fn obfuscation_setting(self, input: ObfuscationSetting) -> Self
Determines how slot values are used in Amazon CloudWatch logs. If the value of the obfuscationSetting parameter is DefaultObfuscation, slot values are obfuscated in the log output. If the value is None, the actual value is present in the log output.
The default is to obfuscate values in the CloudWatch logs.
sourcepub fn set_obfuscation_setting(self, input: Option<ObfuscationSetting>) -> Self
pub fn set_obfuscation_setting(self, input: Option<ObfuscationSetting>) -> Self
Determines how slot values are used in Amazon CloudWatch logs. If the value of the obfuscationSetting parameter is DefaultObfuscation, slot values are obfuscated in the log output. If the value is None, the actual value is present in the log output.
The default is to obfuscate values in the CloudWatch logs.
sourcepub fn get_obfuscation_setting(&self) -> &Option<ObfuscationSetting>
pub fn get_obfuscation_setting(&self) -> &Option<ObfuscationSetting>
Determines how slot values are used in Amazon CloudWatch logs. If the value of the obfuscationSetting parameter is DefaultObfuscation, slot values are obfuscated in the log output. If the value is None, the actual value is present in the log output.
The default is to obfuscate values in the CloudWatch logs.
sourcepub fn bot_id(self, input: impl Into<String>) -> Self
pub fn bot_id(self, input: impl Into<String>) -> Self
The identifier of the bot associated with the slot.
This field is required.sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The identifier of the bot associated with the slot.
sourcepub fn get_bot_id(&self) -> &Option<String>
pub fn get_bot_id(&self) -> &Option<String>
The identifier of the bot associated with 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 associated with the slot.
This field is required.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 associated with the slot.
sourcepub fn get_bot_version(&self) -> &Option<String>
pub fn get_bot_version(&self) -> &Option<String>
The version of the bot associated with the slot.
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 the slot will be used in. The string must match one of the supported locales. All of the bots, intents, slot types used by the slot must have the same locale. For more information, see Supported languages.
This field is required.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 the slot will be used in. The string must match one of the supported locales. All of the bots, intents, slot types used by the slot must have the same locale. For more information, see Supported languages.
sourcepub fn get_locale_id(&self) -> &Option<String>
pub fn get_locale_id(&self) -> &Option<String>
The identifier of the language and locale that the slot will be used in. The string must match one of the supported locales. All of the bots, intents, slot types used by the slot must have the same locale. 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.
This field is required.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 get_intent_id(&self) -> &Option<String>
pub fn get_intent_id(&self) -> &Option<String>
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
Indicates whether the slot returns multiple values in one response. Multi-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
Indicates whether the slot returns multiple values in one response. Multi-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 get_multiple_values_setting(&self) -> &Option<MultipleValuesSetting>
pub fn get_multiple_values_setting(&self) -> &Option<MultipleValuesSetting>
Indicates whether the slot returns multiple values in one response. Multi-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 get_sub_slot_setting(&self) -> &Option<SubSlotSetting>
pub fn get_sub_slot_setting(&self) -> &Option<SubSlotSetting>
Specifications for the constituent sub slots and the expression for the composite slot.
sourcepub fn build(self) -> Result<CreateSlotInput, BuildError>
pub fn build(self) -> Result<CreateSlotInput, BuildError>
Consumes the builder and constructs a CreateSlotInput.
source§impl CreateSlotInputBuilder
impl CreateSlotInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateSlotOutput, SdkError<CreateSlotError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateSlotOutput, SdkError<CreateSlotError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateSlotInputBuilder
impl Clone for CreateSlotInputBuilder
source§fn clone(&self) -> CreateSlotInputBuilder
fn clone(&self) -> CreateSlotInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateSlotInputBuilder
impl Debug for CreateSlotInputBuilder
source§impl Default for CreateSlotInputBuilder
impl Default for CreateSlotInputBuilder
source§fn default() -> CreateSlotInputBuilder
fn default() -> CreateSlotInputBuilder
source§impl PartialEq for CreateSlotInputBuilder
impl PartialEq for CreateSlotInputBuilder
source§fn eq(&self, other: &CreateSlotInputBuilder) -> bool
fn eq(&self, other: &CreateSlotInputBuilder) -> bool
self and other values to be equal, and is used
by ==.