Struct aws_sdk_lexmodelsv2::operation::list_bot_version_replicas::ListBotVersionReplicasOutput
source · #[non_exhaustive]pub struct ListBotVersionReplicasOutput {
pub bot_id: Option<String>,
pub source_region: Option<String>,
pub replica_region: Option<String>,
pub bot_version_replica_summaries: Option<Vec<BotVersionReplicaSummary>>,
pub next_token: Option<String>,
/* private fields */
}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 ID of the bots in the list of replicated bots.
source_region: Option<String>The source region used for the bots in the list of replicated bots.
replica_region: Option<String>The region used for the replicated bots in the list of replicated bots.
bot_version_replica_summaries: Option<Vec<BotVersionReplicaSummary>>The information summary used for the replicated bots in the list of replicated bots.
next_token: Option<String>The next token used for the replicated bots in the list of replicated bots.
Implementations§
source§impl ListBotVersionReplicasOutput
impl ListBotVersionReplicasOutput
sourcepub fn source_region(&self) -> Option<&str>
pub fn source_region(&self) -> Option<&str>
The source region used for the bots in the list of replicated bots.
sourcepub fn replica_region(&self) -> Option<&str>
pub fn replica_region(&self) -> Option<&str>
The region used for the replicated bots in the list of replicated bots.
sourcepub fn bot_version_replica_summaries(&self) -> &[BotVersionReplicaSummary]
pub fn bot_version_replica_summaries(&self) -> &[BotVersionReplicaSummary]
The information summary used for the replicated bots in the list of replicated bots.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .bot_version_replica_summaries.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The next token used for the replicated bots in the list of replicated bots.
source§impl ListBotVersionReplicasOutput
impl ListBotVersionReplicasOutput
sourcepub fn builder() -> ListBotVersionReplicasOutputBuilder
pub fn builder() -> ListBotVersionReplicasOutputBuilder
Creates a new builder-style object to manufacture ListBotVersionReplicasOutput.
Trait Implementations§
source§impl Clone for ListBotVersionReplicasOutput
impl Clone for ListBotVersionReplicasOutput
source§fn clone(&self) -> ListBotVersionReplicasOutput
fn clone(&self) -> ListBotVersionReplicasOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListBotVersionReplicasOutput
impl Debug for ListBotVersionReplicasOutput
source§impl PartialEq for ListBotVersionReplicasOutput
impl PartialEq for ListBotVersionReplicasOutput
source§fn eq(&self, other: &ListBotVersionReplicasOutput) -> bool
fn eq(&self, other: &ListBotVersionReplicasOutput) -> bool
self and other values to be equal, and is used by ==.source§impl RequestId for ListBotVersionReplicasOutput
impl RequestId for ListBotVersionReplicasOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for ListBotVersionReplicasOutput
Auto Trait Implementations§
impl Freeze for ListBotVersionReplicasOutput
impl RefUnwindSafe for ListBotVersionReplicasOutput
impl Send for ListBotVersionReplicasOutput
impl Sync for ListBotVersionReplicasOutput
impl Unpin for ListBotVersionReplicasOutput
impl UnwindSafe for ListBotVersionReplicasOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more