aws_sdk_entityresolution/client/create_matching_workflow.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`CreateMatchingWorkflow`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`workflow_name(impl Into<String>)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::workflow_name) / [`set_workflow_name(Option<String>)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::set_workflow_name):<br>required: **true**<br><p>The name of the workflow. There can't be multiple <code>MatchingWorkflows</code> with the same name.</p><br>
7 /// - [`description(impl Into<String>)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::set_description):<br>required: **false**<br><p>A description of the workflow.</p><br>
8 /// - [`input_source_config(InputSource)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::input_source_config) / [`set_input_source_config(Option<Vec::<InputSource>>)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::set_input_source_config):<br>required: **true**<br><p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p><br>
9 /// - [`output_source_config(OutputSource)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::output_source_config) / [`set_output_source_config(Option<Vec::<OutputSource>>)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::set_output_source_config):<br>required: **true**<br><p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.</p><br>
10 /// - [`resolution_techniques(ResolutionTechniques)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::resolution_techniques) / [`set_resolution_techniques(Option<ResolutionTechniques>)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::set_resolution_techniques):<br>required: **true**<br><p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p><br>
11 /// - [`incremental_run_config(IncrementalRunConfig)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::incremental_run_config) / [`set_incremental_run_config(Option<IncrementalRunConfig>)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::set_incremental_run_config):<br>required: **false**<br><p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p><br>
12 /// - [`role_arn(impl Into<String>)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::role_arn) / [`set_role_arn(Option<String>)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::set_role_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p><br>
13 /// - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::set_tags):<br>required: **false**<br><p>The tags used to organize, track, or control access for this resource.</p><br>
14 /// - On success, responds with [`CreateMatchingWorkflowOutput`](crate::operation::create_matching_workflow::CreateMatchingWorkflowOutput) with field(s):
15 /// - [`workflow_name(String)`](crate::operation::create_matching_workflow::CreateMatchingWorkflowOutput::workflow_name): <p>The name of the workflow.</p>
16 /// - [`workflow_arn(String)`](crate::operation::create_matching_workflow::CreateMatchingWorkflowOutput::workflow_arn): <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>MatchingWorkflow</code>.</p>
17 /// - [`description(Option<String>)`](crate::operation::create_matching_workflow::CreateMatchingWorkflowOutput::description): <p>A description of the workflow.</p>
18 /// - [`input_source_config(Vec::<InputSource>)`](crate::operation::create_matching_workflow::CreateMatchingWorkflowOutput::input_source_config): <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
19 /// - [`output_source_config(Vec::<OutputSource>)`](crate::operation::create_matching_workflow::CreateMatchingWorkflowOutput::output_source_config): <p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.</p>
20 /// - [`resolution_techniques(Option<ResolutionTechniques>)`](crate::operation::create_matching_workflow::CreateMatchingWorkflowOutput::resolution_techniques): <p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>
21 /// - [`incremental_run_config(Option<IncrementalRunConfig>)`](crate::operation::create_matching_workflow::CreateMatchingWorkflowOutput::incremental_run_config): <p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>
22 /// - [`role_arn(String)`](crate::operation::create_matching_workflow::CreateMatchingWorkflowOutput::role_arn): <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>
23 /// - On failure, responds with [`SdkError<CreateMatchingWorkflowError>`](crate::operation::create_matching_workflow::CreateMatchingWorkflowError)
24 pub fn create_matching_workflow(&self) -> crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder {
25 crate::operation::create_matching_workflow::builders::CreateMatchingWorkflowFluentBuilder::new(self.handle.clone())
26 }
27}