#[non_exhaustive]pub struct BotAliasTestExecutionTarget {
pub bot_id: String,
pub bot_alias_id: String,
pub locale_id: String,
}
Expand description
The target Amazon S3 location for the test set execution using a bot alias.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.bot_id: String
The bot Id of the bot alias used in the test set execution.
bot_alias_id: String
The bot alias Id of the bot alias used in the test set execution.
locale_id: String
The locale Id of the bot alias used in the test set execution.
Implementations§
source§impl BotAliasTestExecutionTarget
impl BotAliasTestExecutionTarget
sourcepub fn builder() -> BotAliasTestExecutionTargetBuilder
pub fn builder() -> BotAliasTestExecutionTargetBuilder
Creates a new builder-style object to manufacture BotAliasTestExecutionTarget
.
Trait Implementations§
source§impl Clone for BotAliasTestExecutionTarget
impl Clone for BotAliasTestExecutionTarget
source§fn clone(&self) -> BotAliasTestExecutionTarget
fn clone(&self) -> BotAliasTestExecutionTarget
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BotAliasTestExecutionTarget
impl Debug for BotAliasTestExecutionTarget
source§impl PartialEq for BotAliasTestExecutionTarget
impl PartialEq for BotAliasTestExecutionTarget
source§fn eq(&self, other: &BotAliasTestExecutionTarget) -> bool
fn eq(&self, other: &BotAliasTestExecutionTarget) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BotAliasTestExecutionTarget
Auto Trait Implementations§
impl RefUnwindSafe for BotAliasTestExecutionTarget
impl Send for BotAliasTestExecutionTarget
impl Sync for BotAliasTestExecutionTarget
impl Unpin for BotAliasTestExecutionTarget
impl UnwindSafe for BotAliasTestExecutionTarget
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.