aws_sdk_entityresolution/client/get_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 [`GetMatchingWorkflow`](crate::operation::get_matching_workflow::builders::GetMatchingWorkflowFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`workflow_name(impl Into<String>)`](crate::operation::get_matching_workflow::builders::GetMatchingWorkflowFluentBuilder::workflow_name) / [`set_workflow_name(Option<String>)`](crate::operation::get_matching_workflow::builders::GetMatchingWorkflowFluentBuilder::set_workflow_name):<br>required: **true**<br><p>The name of the workflow.</p><br>
7 /// - On success, responds with [`GetMatchingWorkflowOutput`](crate::operation::get_matching_workflow::GetMatchingWorkflowOutput) with field(s):
8 /// - [`workflow_name(String)`](crate::operation::get_matching_workflow::GetMatchingWorkflowOutput::workflow_name): <p>The name of the workflow.</p>
9 /// - [`workflow_arn(String)`](crate::operation::get_matching_workflow::GetMatchingWorkflowOutput::workflow_arn): <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>MatchingWorkflow</code>.</p>
10 /// - [`description(Option<String>)`](crate::operation::get_matching_workflow::GetMatchingWorkflowOutput::description): <p>A description of the workflow.</p>
11 /// - [`input_source_config(Vec::<InputSource>)`](crate::operation::get_matching_workflow::GetMatchingWorkflowOutput::input_source_config): <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
12 /// - [`output_source_config(Vec::<OutputSource>)`](crate::operation::get_matching_workflow::GetMatchingWorkflowOutput::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>
13 /// - [`resolution_techniques(Option<ResolutionTechniques>)`](crate::operation::get_matching_workflow::GetMatchingWorkflowOutput::resolution_techniques): <p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>
14 /// - [`created_at(DateTime)`](crate::operation::get_matching_workflow::GetMatchingWorkflowOutput::created_at): <p>The timestamp of when the workflow was created.</p>
15 /// - [`updated_at(DateTime)`](crate::operation::get_matching_workflow::GetMatchingWorkflowOutput::updated_at): <p>The timestamp of when the workflow was last updated.</p>
16 /// - [`incremental_run_config(Option<IncrementalRunConfig>)`](crate::operation::get_matching_workflow::GetMatchingWorkflowOutput::incremental_run_config): <p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>
17 /// - [`role_arn(String)`](crate::operation::get_matching_workflow::GetMatchingWorkflowOutput::role_arn): <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access Amazon Web Services resources on your behalf.</p>
18 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_matching_workflow::GetMatchingWorkflowOutput::tags): <p>The tags used to organize, track, or control access for this resource.</p>
19 /// - On failure, responds with [`SdkError<GetMatchingWorkflowError>`](crate::operation::get_matching_workflow::GetMatchingWorkflowError)
20 pub fn get_matching_workflow(&self) -> crate::operation::get_matching_workflow::builders::GetMatchingWorkflowFluentBuilder {
21 crate::operation::get_matching_workflow::builders::GetMatchingWorkflowFluentBuilder::new(self.handle.clone())
22 }
23}