#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for CreateFlowDefinitionInput
Implementations
sourceimpl Builder
impl Builder
sourcepub fn flow_definition_name(self, input: impl Into<String>) -> Self
pub fn flow_definition_name(self, input: impl Into<String>) -> Self
The name of your flow definition.
sourcepub fn set_flow_definition_name(self, input: Option<String>) -> Self
pub fn set_flow_definition_name(self, input: Option<String>) -> Self
The name of your flow definition.
sourcepub fn human_loop_request_source(self, input: HumanLoopRequestSource) -> Self
pub fn human_loop_request_source(self, input: HumanLoopRequestSource) -> Self
Container for configuring the source of human task requests. Use to specify if Amazon Rekognition or Amazon Textract is used as an integration source.
sourcepub fn set_human_loop_request_source(
self,
input: Option<HumanLoopRequestSource>
) -> Self
pub fn set_human_loop_request_source(
self,
input: Option<HumanLoopRequestSource>
) -> Self
Container for configuring the source of human task requests. Use to specify if Amazon Rekognition or Amazon Textract is used as an integration source.
sourcepub fn human_loop_activation_config(
self,
input: HumanLoopActivationConfig
) -> Self
pub fn human_loop_activation_config(
self,
input: HumanLoopActivationConfig
) -> Self
An object containing information about the events that trigger a human workflow.
sourcepub fn set_human_loop_activation_config(
self,
input: Option<HumanLoopActivationConfig>
) -> Self
pub fn set_human_loop_activation_config(
self,
input: Option<HumanLoopActivationConfig>
) -> Self
An object containing information about the events that trigger a human workflow.
sourcepub fn human_loop_config(self, input: HumanLoopConfig) -> Self
pub fn human_loop_config(self, input: HumanLoopConfig) -> Self
An object containing information about the tasks the human reviewers will perform.
sourcepub fn set_human_loop_config(self, input: Option<HumanLoopConfig>) -> Self
pub fn set_human_loop_config(self, input: Option<HumanLoopConfig>) -> Self
An object containing information about the tasks the human reviewers will perform.
sourcepub fn output_config(self, input: FlowDefinitionOutputConfig) -> Self
pub fn output_config(self, input: FlowDefinitionOutputConfig) -> Self
An object containing information about where the human review results will be uploaded.
sourcepub fn set_output_config(
self,
input: Option<FlowDefinitionOutputConfig>
) -> Self
pub fn set_output_config(
self,
input: Option<FlowDefinitionOutputConfig>
) -> Self
An object containing information about where the human review results will be uploaded.
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the role needed to call other services on your behalf. For example, arn:aws:iam::1234567890:role/service-role/AmazonSageMaker-ExecutionRole-20180111T151298
.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the role needed to call other services on your behalf. For example, arn:aws:iam::1234567890:role/service-role/AmazonSageMaker-ExecutionRole-20180111T151298
.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
An array of key-value pairs that contain metadata to help you categorize and organize a flow definition. Each tag consists of a key and a value, both of which you define.
An array of key-value pairs that contain metadata to help you categorize and organize a flow definition. Each tag consists of a key and a value, both of which you define.
sourcepub fn build(self) -> Result<CreateFlowDefinitionInput, BuildError>
pub fn build(self) -> Result<CreateFlowDefinitionInput, BuildError>
Consumes the builder and constructs a CreateFlowDefinitionInput
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more