#[non_exhaustive]pub struct HumanLoopActivationConditionsConfig {
pub human_loop_activation_conditions: Option<String>,
}
Expand description
Defines under what conditions SageMaker creates a human loop. Used within CreateFlowDefinition. See HumanLoopActivationConditionsConfig for the required format of activation conditions.
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.human_loop_activation_conditions: Option<String>
JSON expressing use-case specific conditions declaratively. If any condition is matched, atomic tasks are created against the configured work team. The set of conditions is different for Rekognition and Textract. For more information about how to structure the JSON, see JSON Schema for Human Loop Activation Conditions in Amazon Augmented AI in the Amazon SageMaker Developer Guide.
Implementations§
source§impl HumanLoopActivationConditionsConfig
impl HumanLoopActivationConditionsConfig
sourcepub fn human_loop_activation_conditions(&self) -> Option<&str>
pub fn human_loop_activation_conditions(&self) -> Option<&str>
JSON expressing use-case specific conditions declaratively. If any condition is matched, atomic tasks are created against the configured work team. The set of conditions is different for Rekognition and Textract. For more information about how to structure the JSON, see JSON Schema for Human Loop Activation Conditions in Amazon Augmented AI in the Amazon SageMaker Developer Guide.
source§impl HumanLoopActivationConditionsConfig
impl HumanLoopActivationConditionsConfig
sourcepub fn builder() -> HumanLoopActivationConditionsConfigBuilder
pub fn builder() -> HumanLoopActivationConditionsConfigBuilder
Creates a new builder-style object to manufacture HumanLoopActivationConditionsConfig
.
Trait Implementations§
source§impl Clone for HumanLoopActivationConditionsConfig
impl Clone for HumanLoopActivationConditionsConfig
source§fn clone(&self) -> HumanLoopActivationConditionsConfig
fn clone(&self) -> HumanLoopActivationConditionsConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for HumanLoopActivationConditionsConfig
impl PartialEq for HumanLoopActivationConditionsConfig
source§fn eq(&self, other: &HumanLoopActivationConditionsConfig) -> bool
fn eq(&self, other: &HumanLoopActivationConditionsConfig) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for HumanLoopActivationConditionsConfig
Auto Trait Implementations§
impl Freeze for HumanLoopActivationConditionsConfig
impl RefUnwindSafe for HumanLoopActivationConditionsConfig
impl Send for HumanLoopActivationConditionsConfig
impl Sync for HumanLoopActivationConditionsConfig
impl Unpin for HumanLoopActivationConditionsConfig
impl UnwindSafe for HumanLoopActivationConditionsConfig
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