#[non_exhaustive]pub struct UpdateBotInputBuilder { /* private fields */ }Expand description
A builder for UpdateBotInput.
Implementations§
source§impl UpdateBotInputBuilder
impl UpdateBotInputBuilder
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 to update. This identifier is returned by the CreateBot operation.
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 to update. This identifier is returned by the CreateBot operation.
sourcepub fn bot_name(self, input: impl Into<String>) -> Self
pub fn bot_name(self, input: impl Into<String>) -> Self
The new name of the bot. The name must be unique in the account that creates the bot.
sourcepub fn set_bot_name(self, input: Option<String>) -> Self
pub fn set_bot_name(self, input: Option<String>) -> Self
The new name of the bot. The name must be unique in the account that creates the bot.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the bot.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the bot.
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of an IAM role that has permissions to access the bot.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of an IAM role that has permissions to access the bot.
sourcepub fn data_privacy(self, input: DataPrivacy) -> Self
pub fn data_privacy(self, input: DataPrivacy) -> Self
Provides information on additional privacy protections Amazon Lex should use with the bot's data.
sourcepub fn set_data_privacy(self, input: Option<DataPrivacy>) -> Self
pub fn set_data_privacy(self, input: Option<DataPrivacy>) -> Self
Provides information on additional privacy protections Amazon Lex should use with the bot's data.
sourcepub fn idle_session_ttl_in_seconds(self, input: i32) -> Self
pub fn idle_session_ttl_in_seconds(self, input: i32) -> Self
The time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot.
A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Lex deletes any data provided before the timeout.
You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
sourcepub fn set_idle_session_ttl_in_seconds(self, input: Option<i32>) -> Self
pub fn set_idle_session_ttl_in_seconds(self, input: Option<i32>) -> Self
The time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot.
A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Lex deletes any data provided before the timeout.
You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
sourcepub fn set_bot_type(self, input: Option<BotType>) -> Self
pub fn set_bot_type(self, input: Option<BotType>) -> Self
The type of the bot to be updated.
sourcepub fn bot_members(self, input: BotMember) -> Self
pub fn bot_members(self, input: BotMember) -> Self
Appends an item to bot_members.
To override the contents of this collection use set_bot_members.
The list of bot members in the network associated with the update action.
sourcepub fn set_bot_members(self, input: Option<Vec<BotMember>>) -> Self
pub fn set_bot_members(self, input: Option<Vec<BotMember>>) -> Self
The list of bot members in the network associated with the update action.
sourcepub fn build(self) -> Result<UpdateBotInput, BuildError>
pub fn build(self) -> Result<UpdateBotInput, BuildError>
Consumes the builder and constructs a UpdateBotInput.
Trait Implementations§
source§impl Clone for UpdateBotInputBuilder
impl Clone for UpdateBotInputBuilder
source§fn clone(&self) -> UpdateBotInputBuilder
fn clone(&self) -> UpdateBotInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateBotInputBuilder
impl Debug for UpdateBotInputBuilder
source§impl Default for UpdateBotInputBuilder
impl Default for UpdateBotInputBuilder
source§fn default() -> UpdateBotInputBuilder
fn default() -> UpdateBotInputBuilder
source§impl PartialEq<UpdateBotInputBuilder> for UpdateBotInputBuilder
impl PartialEq<UpdateBotInputBuilder> for UpdateBotInputBuilder
source§fn eq(&self, other: &UpdateBotInputBuilder) -> bool
fn eq(&self, other: &UpdateBotInputBuilder) -> bool
self and other values to be equal, and is used
by ==.