Struct aws_sdk_lexmodelsv2::types::builders::SubSlotSettingBuilder
source · #[non_exhaustive]pub struct SubSlotSettingBuilder { /* private fields */ }Expand description
A builder for SubSlotSetting.
Implementations§
source§impl SubSlotSettingBuilder
impl SubSlotSettingBuilder
sourcepub fn expression(self, input: impl Into<String>) -> Self
pub fn expression(self, input: impl Into<String>) -> Self
The expression text for defining the constituent sub slots in the composite slot using logical AND and OR operators.
sourcepub fn set_expression(self, input: Option<String>) -> Self
pub fn set_expression(self, input: Option<String>) -> Self
The expression text for defining the constituent sub slots in the composite slot using logical AND and OR operators.
sourcepub fn get_expression(&self) -> &Option<String>
pub fn get_expression(&self) -> &Option<String>
The expression text for defining the constituent sub slots in the composite slot using logical AND and OR operators.
sourcepub fn slot_specifications(
self,
k: impl Into<String>,
v: Specifications,
) -> Self
pub fn slot_specifications( self, k: impl Into<String>, v: Specifications, ) -> Self
Adds a key-value pair to slot_specifications.
To override the contents of this collection use set_slot_specifications.
Specifications for the constituent sub slots of a composite slot.
sourcepub fn set_slot_specifications(
self,
input: Option<HashMap<String, Specifications>>,
) -> Self
pub fn set_slot_specifications( self, input: Option<HashMap<String, Specifications>>, ) -> Self
Specifications for the constituent sub slots of a composite slot.
sourcepub fn get_slot_specifications(
&self,
) -> &Option<HashMap<String, Specifications>>
pub fn get_slot_specifications( &self, ) -> &Option<HashMap<String, Specifications>>
Specifications for the constituent sub slots of a composite slot.
sourcepub fn build(self) -> SubSlotSetting
pub fn build(self) -> SubSlotSetting
Consumes the builder and constructs a SubSlotSetting.
Trait Implementations§
source§impl Clone for SubSlotSettingBuilder
impl Clone for SubSlotSettingBuilder
source§fn clone(&self) -> SubSlotSettingBuilder
fn clone(&self) -> SubSlotSettingBuilder
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 SubSlotSettingBuilder
impl Debug for SubSlotSettingBuilder
source§impl Default for SubSlotSettingBuilder
impl Default for SubSlotSettingBuilder
source§fn default() -> SubSlotSettingBuilder
fn default() -> SubSlotSettingBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for SubSlotSettingBuilder
impl PartialEq for SubSlotSettingBuilder
impl StructuralPartialEq for SubSlotSettingBuilder
Auto Trait Implementations§
impl Freeze for SubSlotSettingBuilder
impl RefUnwindSafe for SubSlotSettingBuilder
impl Send for SubSlotSettingBuilder
impl Sync for SubSlotSettingBuilder
impl Unpin for SubSlotSettingBuilder
impl UnwindSafe for SubSlotSettingBuilder
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> 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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.