#[non_exhaustive]pub struct StopBotRecommendationOutput { /* private fields */ }Implementations
sourceimpl StopBotRecommendationOutput
impl StopBotRecommendationOutput
sourcepub fn bot_id(&self) -> Option<&str>
pub fn bot_id(&self) -> Option<&str>
The unique identifier of the bot containing the bot recommendation that is being stopped.
sourcepub fn bot_version(&self) -> Option<&str>
pub fn bot_version(&self) -> Option<&str>
The version of the bot containing the recommendation that is being stopped.
sourcepub fn locale_id(&self) -> Option<&str>
pub fn locale_id(&self) -> Option<&str>
The identifier of the language and locale of the bot response to stop. The string must match one of the supported locales. For more information, see Supported languages
sourcepub fn bot_recommendation_status(&self) -> Option<&BotRecommendationStatus>
pub fn bot_recommendation_status(&self) -> Option<&BotRecommendationStatus>
The status of the bot recommendation. If the status is Failed, then the reasons for the failure are listed in the failureReasons field.
sourcepub fn bot_recommendation_id(&self) -> Option<&str>
pub fn bot_recommendation_id(&self) -> Option<&str>
The unique identifier of the bot recommendation that is being stopped.
sourceimpl StopBotRecommendationOutput
impl StopBotRecommendationOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StopBotRecommendationOutput.
Trait Implementations
sourceimpl Clone for StopBotRecommendationOutput
impl Clone for StopBotRecommendationOutput
sourcefn clone(&self) -> StopBotRecommendationOutput
fn clone(&self) -> StopBotRecommendationOutput
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 moresourceimpl Debug for StopBotRecommendationOutput
impl Debug for StopBotRecommendationOutput
sourceimpl PartialEq<StopBotRecommendationOutput> for StopBotRecommendationOutput
impl PartialEq<StopBotRecommendationOutput> for StopBotRecommendationOutput
sourcefn eq(&self, other: &StopBotRecommendationOutput) -> bool
fn eq(&self, other: &StopBotRecommendationOutput) -> bool
impl StructuralPartialEq for StopBotRecommendationOutput
Auto Trait Implementations
impl RefUnwindSafe for StopBotRecommendationOutput
impl Send for StopBotRecommendationOutput
impl Sync for StopBotRecommendationOutput
impl Unpin for StopBotRecommendationOutput
impl UnwindSafe for StopBotRecommendationOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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