Struct aws_sdk_sagemaker::operation::create_flow_definition::builders::CreateFlowDefinitionInputBuilder
source · #[non_exhaustive]pub struct CreateFlowDefinitionInputBuilder { /* private fields */ }
Expand description
A builder for CreateFlowDefinitionInput
.
Implementations§
source§impl CreateFlowDefinitionInputBuilder
impl CreateFlowDefinitionInputBuilder
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§
source§impl Clone for CreateFlowDefinitionInputBuilder
impl Clone for CreateFlowDefinitionInputBuilder
source§fn clone(&self) -> CreateFlowDefinitionInputBuilder
fn clone(&self) -> CreateFlowDefinitionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateFlowDefinitionInputBuilder
impl Default for CreateFlowDefinitionInputBuilder
source§fn default() -> CreateFlowDefinitionInputBuilder
fn default() -> CreateFlowDefinitionInputBuilder
source§impl PartialEq<CreateFlowDefinitionInputBuilder> for CreateFlowDefinitionInputBuilder
impl PartialEq<CreateFlowDefinitionInputBuilder> for CreateFlowDefinitionInputBuilder
source§fn eq(&self, other: &CreateFlowDefinitionInputBuilder) -> bool
fn eq(&self, other: &CreateFlowDefinitionInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.