Struct aws_sdk_lexmodelsv2::operation::create_bot_replica::builders::CreateBotReplicaOutputBuilder
source · #[non_exhaustive]pub struct CreateBotReplicaOutputBuilder { /* private fields */ }Expand description
A builder for CreateBotReplicaOutput.
Implementations§
source§impl CreateBotReplicaOutputBuilder
impl CreateBotReplicaOutputBuilder
sourcepub fn bot_id(self, input: impl Into<String>) -> Self
pub fn bot_id(self, input: impl Into<String>) -> Self
The unique bot ID of the replicated bot generated.
sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The unique bot ID of the replicated bot generated.
sourcepub fn get_bot_id(&self) -> &Option<String>
pub fn get_bot_id(&self) -> &Option<String>
The unique bot ID of the replicated bot generated.
sourcepub fn replica_region(self, input: impl Into<String>) -> Self
pub fn replica_region(self, input: impl Into<String>) -> Self
The region of the replicated bot generated.
sourcepub fn set_replica_region(self, input: Option<String>) -> Self
pub fn set_replica_region(self, input: Option<String>) -> Self
The region of the replicated bot generated.
sourcepub fn get_replica_region(&self) -> &Option<String>
pub fn get_replica_region(&self) -> &Option<String>
The region of the replicated bot generated.
sourcepub fn source_region(self, input: impl Into<String>) -> Self
pub fn source_region(self, input: impl Into<String>) -> Self
The source region for the source bot used for the replicated bot generated.
sourcepub fn set_source_region(self, input: Option<String>) -> Self
pub fn set_source_region(self, input: Option<String>) -> Self
The source region for the source bot used for the replicated bot generated.
sourcepub fn get_source_region(&self) -> &Option<String>
pub fn get_source_region(&self) -> &Option<String>
The source region for the source bot used for the replicated bot generated.
sourcepub fn creation_date_time(self, input: DateTime) -> Self
pub fn creation_date_time(self, input: DateTime) -> Self
The creation date and time of the replicated bot generated.
sourcepub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
The creation date and time of the replicated bot generated.
sourcepub fn get_creation_date_time(&self) -> &Option<DateTime>
pub fn get_creation_date_time(&self) -> &Option<DateTime>
The creation date and time of the replicated bot generated.
sourcepub fn bot_replica_status(self, input: BotReplicaStatus) -> Self
pub fn bot_replica_status(self, input: BotReplicaStatus) -> Self
The operational status of the replicated bot generated.
sourcepub fn set_bot_replica_status(self, input: Option<BotReplicaStatus>) -> Self
pub fn set_bot_replica_status(self, input: Option<BotReplicaStatus>) -> Self
The operational status of the replicated bot generated.
sourcepub fn get_bot_replica_status(&self) -> &Option<BotReplicaStatus>
pub fn get_bot_replica_status(&self) -> &Option<BotReplicaStatus>
The operational status of the replicated bot generated.
sourcepub fn build(self) -> CreateBotReplicaOutput
pub fn build(self) -> CreateBotReplicaOutput
Consumes the builder and constructs a CreateBotReplicaOutput.
Trait Implementations§
source§impl Clone for CreateBotReplicaOutputBuilder
impl Clone for CreateBotReplicaOutputBuilder
source§fn clone(&self) -> CreateBotReplicaOutputBuilder
fn clone(&self) -> CreateBotReplicaOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CreateBotReplicaOutputBuilder
impl Default for CreateBotReplicaOutputBuilder
source§fn default() -> CreateBotReplicaOutputBuilder
fn default() -> CreateBotReplicaOutputBuilder
source§impl PartialEq for CreateBotReplicaOutputBuilder
impl PartialEq for CreateBotReplicaOutputBuilder
source§fn eq(&self, other: &CreateBotReplicaOutputBuilder) -> bool
fn eq(&self, other: &CreateBotReplicaOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateBotReplicaOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateBotReplicaOutputBuilder
impl RefUnwindSafe for CreateBotReplicaOutputBuilder
impl Send for CreateBotReplicaOutputBuilder
impl Sync for CreateBotReplicaOutputBuilder
impl Unpin for CreateBotReplicaOutputBuilder
impl UnwindSafe for CreateBotReplicaOutputBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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