#[non_exhaustive]pub struct HumanLoopActivationOutput { /* private fields */ }Expand description
Shows the results of the human in the loop evaluation. If there is no HumanLoopArn, the input did not trigger human review.
Implementations
sourceimpl HumanLoopActivationOutput
impl HumanLoopActivationOutput
sourcepub fn human_loop_arn(&self) -> Option<&str>
pub fn human_loop_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the HumanLoop created.
sourcepub fn human_loop_activation_reasons(&self) -> Option<&[String]>
pub fn human_loop_activation_reasons(&self) -> Option<&[String]>
Shows if and why human review was needed.
sourcepub fn human_loop_activation_conditions_evaluation_results(
&self
) -> Option<&str>
pub fn human_loop_activation_conditions_evaluation_results(
&self
) -> Option<&str>
Shows the result of condition evaluations, including those conditions which activated a human review.
sourceimpl HumanLoopActivationOutput
impl HumanLoopActivationOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture HumanLoopActivationOutput.
Trait Implementations
sourceimpl Clone for HumanLoopActivationOutput
impl Clone for HumanLoopActivationOutput
sourcefn clone(&self) -> HumanLoopActivationOutput
fn clone(&self) -> HumanLoopActivationOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for HumanLoopActivationOutput
impl Debug for HumanLoopActivationOutput
sourceimpl PartialEq<HumanLoopActivationOutput> for HumanLoopActivationOutput
impl PartialEq<HumanLoopActivationOutput> for HumanLoopActivationOutput
sourcefn eq(&self, other: &HumanLoopActivationOutput) -> bool
fn eq(&self, other: &HumanLoopActivationOutput) -> bool
impl StructuralPartialEq for HumanLoopActivationOutput
Auto Trait Implementations
impl RefUnwindSafe for HumanLoopActivationOutput
impl Send for HumanLoopActivationOutput
impl Sync for HumanLoopActivationOutput
impl Unpin for HumanLoopActivationOutput
impl UnwindSafe for HumanLoopActivationOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more