Struct aws_sdk_lexmodelsv2::input::UpdateBotInput
source · #[non_exhaustive]pub struct UpdateBotInput { /* private fields */ }Implementations§
source§impl UpdateBotInput
impl UpdateBotInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateBot, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateBot, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateBot>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateBotInput.
source§impl UpdateBotInput
impl UpdateBotInput
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The unique identifier of the bot to update. This identifier is returned by the CreateBot operation.
sourcepub fn bot_name(&self) -> Option<&str>
pub fn bot_name(&self) -> Option<&str>
The new name of the bot. The name must be unique in the account that creates the bot.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the bot.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of an IAM role that has permissions to access the bot.
sourcepub fn data_privacy(&self) -> Option<&DataPrivacy>
pub fn data_privacy(&self) -> Option<&DataPrivacy>
Provides information on additional privacy protections Amazon Lex should use with the bot's data.
sourcepub fn idle_session_ttl_in_seconds(&self) -> Option<i32>
pub fn idle_session_ttl_in_seconds(&self) -> Option<i32>
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.
Trait Implementations§
source§impl Clone for UpdateBotInput
impl Clone for UpdateBotInput
source§fn clone(&self) -> UpdateBotInput
fn clone(&self) -> UpdateBotInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateBotInput
impl Debug for UpdateBotInput
source§impl PartialEq<UpdateBotInput> for UpdateBotInput
impl PartialEq<UpdateBotInput> for UpdateBotInput
source§fn eq(&self, other: &UpdateBotInput) -> bool
fn eq(&self, other: &UpdateBotInput) -> bool
self and other values to be equal, and is used
by ==.