Struct aws_sdk_lexmodelsv2::output::DescribeBotOutput
source · [−]#[non_exhaustive]pub struct DescribeBotOutput {
pub bot_id: Option<String>,
pub bot_name: Option<String>,
pub description: Option<String>,
pub role_arn: Option<String>,
pub data_privacy: Option<DataPrivacy>,
pub idle_session_ttl_in_seconds: Option<i32>,
pub bot_status: Option<BotStatus>,
pub creation_date_time: Option<DateTime>,
pub last_updated_date_time: Option<DateTime>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.bot_id: Option<String>The unique identifier of the bot.
bot_name: Option<String>The name of the bot.
description: Option<String>The description of the bot.
role_arn: Option<String>The Amazon Resource Name (ARN) of an IAM role that has permission to access the bot.
data_privacy: Option<DataPrivacy>Settings for managing data privacy of the bot and its conversations with users.
idle_session_ttl_in_seconds: Option<i32>The maximum time in seconds that Amazon Lex retains the data gathered in a conversation.
bot_status: Option<BotStatus>The current status of the bot. When the status is Available the bot is ready to be used in conversations with users.
creation_date_time: Option<DateTime>A timestamp of the date and time that the bot was created.
last_updated_date_time: Option<DateTime>A timestamp of the date and time that the bot was last updated.
Implementations
sourceimpl DescribeBotOutput
impl DescribeBotOutput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The 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 permission to access the bot.
sourcepub fn data_privacy(&self) -> Option<&DataPrivacy>
pub fn data_privacy(&self) -> Option<&DataPrivacy>
Settings for managing data privacy of the bot and its conversations with users.
sourcepub fn idle_session_ttl_in_seconds(&self) -> Option<i32>
pub fn idle_session_ttl_in_seconds(&self) -> Option<i32>
The maximum time in seconds that Amazon Lex retains the data gathered in a conversation.
sourcepub fn bot_status(&self) -> Option<&BotStatus>
pub fn bot_status(&self) -> Option<&BotStatus>
The current status of the bot. When the status is Available the bot is ready to be used in conversations with users.
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
A timestamp of the date and time that the bot was created.
sourcepub fn last_updated_date_time(&self) -> Option<&DateTime>
pub fn last_updated_date_time(&self) -> Option<&DateTime>
A timestamp of the date and time that the bot was last updated.
sourceimpl DescribeBotOutput
impl DescribeBotOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeBotOutput.
Trait Implementations
sourceimpl Clone for DescribeBotOutput
impl Clone for DescribeBotOutput
sourcefn clone(&self) -> DescribeBotOutput
fn clone(&self) -> DescribeBotOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DescribeBotOutput
impl Debug for DescribeBotOutput
sourceimpl PartialEq<DescribeBotOutput> for DescribeBotOutput
impl PartialEq<DescribeBotOutput> for DescribeBotOutput
sourcefn eq(&self, other: &DescribeBotOutput) -> bool
fn eq(&self, other: &DescribeBotOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DescribeBotOutput) -> bool
fn ne(&self, other: &DescribeBotOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for DescribeBotOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeBotOutput
impl Send for DescribeBotOutput
impl Sync for DescribeBotOutput
impl Unpin for DescribeBotOutput
impl UnwindSafe for DescribeBotOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more