Struct aws_sdk_sagemaker::operation::create_flow_definition::builders::CreateFlowDefinitionFluentBuilder
source · pub struct CreateFlowDefinitionFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateFlowDefinition
.
Creates a flow definition.
Implementations§
source§impl CreateFlowDefinitionFluentBuilder
impl CreateFlowDefinitionFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateFlowDefinition, AwsResponseRetryClassifier>, SdkError<CreateFlowDefinitionError>>
pub async fn customize( self ) -> Result<CustomizableOperation<CreateFlowDefinition, AwsResponseRetryClassifier>, SdkError<CreateFlowDefinitionError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<CreateFlowDefinitionOutput, SdkError<CreateFlowDefinitionError>>
pub async fn send( self ) -> Result<CreateFlowDefinitionOutput, SdkError<CreateFlowDefinitionError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
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.
Trait Implementations§
source§impl Clone for CreateFlowDefinitionFluentBuilder
impl Clone for CreateFlowDefinitionFluentBuilder
source§fn clone(&self) -> CreateFlowDefinitionFluentBuilder
fn clone(&self) -> CreateFlowDefinitionFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more