pub struct HumanLoopActivationOutput {
pub human_loop_activation_conditions_evaluation_results: Option<String>,
pub human_loop_activation_reasons: Option<Vec<String>>,
pub human_loop_arn: Option<String>,
}Expand description
Shows the results of the human in the loop evaluation. If there is no HumanLoopArn, the input did not trigger human review.
Fields§
§human_loop_activation_conditions_evaluation_results: Option<String>Shows the result of condition evaluations, including those conditions which activated a human review.
human_loop_activation_reasons: Option<Vec<String>>Shows if and why human review was needed.
human_loop_arn: Option<String>The Amazon Resource Name (ARN) of the HumanLoop created.
Trait Implementations§
Source§impl Clone for HumanLoopActivationOutput
impl Clone for HumanLoopActivationOutput
Source§fn clone(&self) -> HumanLoopActivationOutput
fn clone(&self) -> HumanLoopActivationOutput
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 Debug for HumanLoopActivationOutput
impl Debug for HumanLoopActivationOutput
Source§impl Default for HumanLoopActivationOutput
impl Default for HumanLoopActivationOutput
Source§fn default() -> HumanLoopActivationOutput
fn default() -> HumanLoopActivationOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HumanLoopActivationOutput
impl<'de> Deserialize<'de> for HumanLoopActivationOutput
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
impl StructuralPartialEq for HumanLoopActivationOutput
Auto Trait Implementations§
impl Freeze for HumanLoopActivationOutput
impl RefUnwindSafe for HumanLoopActivationOutput
impl Send for HumanLoopActivationOutput
impl Sync for HumanLoopActivationOutput
impl Unpin for HumanLoopActivationOutput
impl UnwindSafe for HumanLoopActivationOutput
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