pub struct HumanLoopActivationConditionsConfig {
pub human_loop_activation_conditions: String,
}Expand description
Defines under what conditions SageMaker creates a human loop. Used within . See for the required format of activation conditions.
Fields§
§human_loop_activation_conditions: StringJSON 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.
Trait Implementations§
Source§impl Clone for HumanLoopActivationConditionsConfig
impl Clone for HumanLoopActivationConditionsConfig
Source§fn clone(&self) -> HumanLoopActivationConditionsConfig
fn clone(&self) -> HumanLoopActivationConditionsConfig
Returns a duplicate 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 HumanLoopActivationConditionsConfig
impl Default for HumanLoopActivationConditionsConfig
Source§fn default() -> HumanLoopActivationConditionsConfig
fn default() -> HumanLoopActivationConditionsConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HumanLoopActivationConditionsConfig
impl<'de> Deserialize<'de> for HumanLoopActivationConditionsConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for HumanLoopActivationConditionsConfig
impl PartialEq for HumanLoopActivationConditionsConfig
Source§fn eq(&self, other: &HumanLoopActivationConditionsConfig) -> bool
fn eq(&self, other: &HumanLoopActivationConditionsConfig) -> bool
Tests for
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
Mutably borrows from an owned value. Read more