#[non_exhaustive]pub struct HumanLoopActivationConfigBuilder { /* private fields */ }
Expand description
A builder for HumanLoopActivationConfig
.
Implementations§
source§impl HumanLoopActivationConfigBuilder
impl HumanLoopActivationConfigBuilder
sourcepub fn human_loop_activation_conditions_config(
self,
input: HumanLoopActivationConditionsConfig,
) -> Self
pub fn human_loop_activation_conditions_config( self, input: HumanLoopActivationConditionsConfig, ) -> Self
Container structure for defining under what conditions SageMaker creates a human loop.
This field is required.sourcepub fn set_human_loop_activation_conditions_config(
self,
input: Option<HumanLoopActivationConditionsConfig>,
) -> Self
pub fn set_human_loop_activation_conditions_config( self, input: Option<HumanLoopActivationConditionsConfig>, ) -> Self
Container structure for defining under what conditions SageMaker creates a human loop.
sourcepub fn get_human_loop_activation_conditions_config(
&self,
) -> &Option<HumanLoopActivationConditionsConfig>
pub fn get_human_loop_activation_conditions_config( &self, ) -> &Option<HumanLoopActivationConditionsConfig>
Container structure for defining under what conditions SageMaker creates a human loop.
sourcepub fn build(self) -> HumanLoopActivationConfig
pub fn build(self) -> HumanLoopActivationConfig
Consumes the builder and constructs a HumanLoopActivationConfig
.
Trait Implementations§
source§impl Clone for HumanLoopActivationConfigBuilder
impl Clone for HumanLoopActivationConfigBuilder
source§fn clone(&self) -> HumanLoopActivationConfigBuilder
fn clone(&self) -> HumanLoopActivationConfigBuilder
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 Default for HumanLoopActivationConfigBuilder
impl Default for HumanLoopActivationConfigBuilder
source§fn default() -> HumanLoopActivationConfigBuilder
fn default() -> HumanLoopActivationConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for HumanLoopActivationConfigBuilder
impl PartialEq for HumanLoopActivationConfigBuilder
source§fn eq(&self, other: &HumanLoopActivationConfigBuilder) -> bool
fn eq(&self, other: &HumanLoopActivationConfigBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for HumanLoopActivationConfigBuilder
Auto Trait Implementations§
impl Freeze for HumanLoopActivationConfigBuilder
impl RefUnwindSafe for HumanLoopActivationConfigBuilder
impl Send for HumanLoopActivationConfigBuilder
impl Sync for HumanLoopActivationConfigBuilder
impl Unpin for HumanLoopActivationConfigBuilder
impl UnwindSafe for HumanLoopActivationConfigBuilder
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.