aws_sdk_entityresolution/client/update_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 [`UpdateMatchingWorkflow`](crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`workflow_name(impl Into<String>)`](crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::workflow_name) / [`set_workflow_name(Option<String>)`](crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::set_workflow_name):<br>required: **true**<br><p>The name of the workflow to be retrieved.</p><br>
7 /// - [`description(impl Into<String>)`](crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::set_description):<br>required: **false**<br><p>A description of the workflow.</p><br>
8 /// - [`input_source_config(InputSource)`](crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::input_source_config) / [`set_input_source_config(Option<Vec::<InputSource>>)`](crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::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::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::output_source_config) / [`set_output_source_config(Option<Vec::<OutputSource>>)`](crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::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::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::resolution_techniques) / [`set_resolution_techniques(Option<ResolutionTechniques>)`](crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::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::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::incremental_run_config) / [`set_incremental_run_config(Option<IncrementalRunConfig>)`](crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::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::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::role_arn) / [`set_role_arn(Option<String>)`](crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::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 /// - On success, responds with [`UpdateMatchingWorkflowOutput`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowOutput) with field(s):
14 /// - [`workflow_name(String)`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowOutput::workflow_name): <p>The name of the workflow.</p>
15 /// - [`description(Option<String>)`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowOutput::description): <p>A description of the workflow.</p>
16 /// - [`input_source_config(Vec::<InputSource>)`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowOutput::input_source_config): <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
17 /// - [`output_source_config(Vec::<OutputSource>)`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowOutput::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>
18 /// - [`resolution_techniques(Option<ResolutionTechniques>)`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowOutput::resolution_techniques): <p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>
19 /// - [`incremental_run_config(Option<IncrementalRunConfig>)`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowOutput::incremental_run_config): <p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>
20 /// - [`role_arn(String)`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowOutput::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>
21 /// - On failure, responds with [`SdkError<UpdateMatchingWorkflowError>`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowError)
22 pub fn update_matching_workflow(&self) -> crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder {
23 crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::new(self.handle.clone())
24 }
25}