pub struct HumanLoopConfig {
pub data_attributes: Option<HumanLoopDataAttributes>,
pub flow_definition_arn: String,
pub human_loop_name: String,
}
Expand description
Sets up the human review workflow the document will be sent to if one of the conditions is met. You can also set certain attributes of the image before review.
Fields§
§data_attributes: Option<HumanLoopDataAttributes>
Sets attributes of the input data.
flow_definition_arn: String
The Amazon Resource Name (ARN) of the flow definition.
human_loop_name: String
The name of the human workflow used for this image. This should be kept unique within a region.
Trait Implementations§
Source§impl Clone for HumanLoopConfig
impl Clone for HumanLoopConfig
Source§fn clone(&self) -> HumanLoopConfig
fn clone(&self) -> HumanLoopConfig
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 HumanLoopConfig
impl Debug for HumanLoopConfig
Source§impl Default for HumanLoopConfig
impl Default for HumanLoopConfig
Source§fn default() -> HumanLoopConfig
fn default() -> HumanLoopConfig
Returns the “default value” for a type. Read more
Source§impl PartialEq for HumanLoopConfig
impl PartialEq for HumanLoopConfig
Source§impl Serialize for HumanLoopConfig
impl Serialize for HumanLoopConfig
impl StructuralPartialEq for HumanLoopConfig
Auto Trait Implementations§
impl Freeze for HumanLoopConfig
impl RefUnwindSafe for HumanLoopConfig
impl Send for HumanLoopConfig
impl Sync for HumanLoopConfig
impl Unpin for HumanLoopConfig
impl UnwindSafe for HumanLoopConfig
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