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.
This field is required.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 get_flow_definition_name(&self) -> &Option<String>
pub fn get_flow_definition_name(&self) -> &Option<String>
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 get_human_loop_request_source(&self) -> &Option<HumanLoopRequestSource>
pub fn get_human_loop_request_source(&self) -> &Option<HumanLoopRequestSource>
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 get_human_loop_activation_config(
&self
) -> &Option<HumanLoopActivationConfig>
pub fn get_human_loop_activation_config( &self ) -> &Option<HumanLoopActivationConfig>
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 get_human_loop_config(&self) -> &Option<HumanLoopConfig>
pub fn get_human_loop_config(&self) -> &Option<HumanLoopConfig>
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.
This field is required.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 get_output_config(&self) -> &Option<FlowDefinitionOutputConfig>
pub fn get_output_config(&self) -> &Option<FlowDefinitionOutputConfig>
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
.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
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.
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
.
source§impl CreateFlowDefinitionInputBuilder
impl CreateFlowDefinitionInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateFlowDefinitionOutput, SdkError<CreateFlowDefinitionError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateFlowDefinitionOutput, SdkError<CreateFlowDefinitionError, HttpResponse>>
Sends a request with this input using the given client.
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 for CreateFlowDefinitionInputBuilder
impl PartialEq 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 ==
.