#[non_exhaustive]pub struct HumanLoopRequestSourceBuilder { /* private fields */ }
Expand description
A builder for HumanLoopRequestSource
.
Implementations§
source§impl HumanLoopRequestSourceBuilder
impl HumanLoopRequestSourceBuilder
sourcepub fn aws_managed_human_loop_request_source(
self,
input: AwsManagedHumanLoopRequestSource,
) -> Self
pub fn aws_managed_human_loop_request_source( self, input: AwsManagedHumanLoopRequestSource, ) -> Self
Specifies whether Amazon Rekognition or Amazon Textract are used as the integration source. The default field settings and JSON parsing rules are different based on the integration source. Valid values:
This field is required.sourcepub fn set_aws_managed_human_loop_request_source(
self,
input: Option<AwsManagedHumanLoopRequestSource>,
) -> Self
pub fn set_aws_managed_human_loop_request_source( self, input: Option<AwsManagedHumanLoopRequestSource>, ) -> Self
Specifies whether Amazon Rekognition or Amazon Textract are used as the integration source. The default field settings and JSON parsing rules are different based on the integration source. Valid values:
sourcepub fn get_aws_managed_human_loop_request_source(
&self,
) -> &Option<AwsManagedHumanLoopRequestSource>
pub fn get_aws_managed_human_loop_request_source( &self, ) -> &Option<AwsManagedHumanLoopRequestSource>
Specifies whether Amazon Rekognition or Amazon Textract are used as the integration source. The default field settings and JSON parsing rules are different based on the integration source. Valid values:
sourcepub fn build(self) -> HumanLoopRequestSource
pub fn build(self) -> HumanLoopRequestSource
Consumes the builder and constructs a HumanLoopRequestSource
.
Trait Implementations§
source§impl Clone for HumanLoopRequestSourceBuilder
impl Clone for HumanLoopRequestSourceBuilder
source§fn clone(&self) -> HumanLoopRequestSourceBuilder
fn clone(&self) -> HumanLoopRequestSourceBuilder
Returns a copy 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 HumanLoopRequestSourceBuilder
impl Default for HumanLoopRequestSourceBuilder
source§fn default() -> HumanLoopRequestSourceBuilder
fn default() -> HumanLoopRequestSourceBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for HumanLoopRequestSourceBuilder
impl PartialEq for HumanLoopRequestSourceBuilder
source§fn eq(&self, other: &HumanLoopRequestSourceBuilder) -> bool
fn eq(&self, other: &HumanLoopRequestSourceBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for HumanLoopRequestSourceBuilder
Auto Trait Implementations§
impl Freeze for HumanLoopRequestSourceBuilder
impl RefUnwindSafe for HumanLoopRequestSourceBuilder
impl Send for HumanLoopRequestSourceBuilder
impl Sync for HumanLoopRequestSourceBuilder
impl Unpin for HumanLoopRequestSourceBuilder
impl UnwindSafe for HumanLoopRequestSourceBuilder
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
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.