1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateMatchingWorkflow`](crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`UpdateMatchingWorkflowOutput`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowOutput) with field(s):
    ///   - [`workflow_name(String)`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowOutput::workflow_name): <p>The name of the workflow.</p>
    ///   - [`description(Option<String>)`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowOutput::description): <p>A description of the workflow.</p>
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<UpdateMatchingWorkflowError>`](crate::operation::update_matching_workflow::UpdateMatchingWorkflowError)
    pub fn update_matching_workflow(&self) -> crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder {
        crate::operation::update_matching_workflow::builders::UpdateMatchingWorkflowFluentBuilder::new(self.handle.clone())
    }
}