Struct aws_sdk_lexmodelsv2::input::update_slot_input::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for UpdateSlotInput.
Implementations§
source§impl 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 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.
Examples found in repository?
9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::UpdateSlot,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::UpdateSlotError>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::UpdateSlotOutput,
aws_smithy_http::result::SdkError<crate::error::UpdateSlotError>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}