aws_sdk_entityresolution/client/
start_matching_job.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 [`StartMatchingJob`](crate::operation::start_matching_job::builders::StartMatchingJobFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`workflow_name(impl Into<String>)`](crate::operation::start_matching_job::builders::StartMatchingJobFluentBuilder::workflow_name) / [`set_workflow_name(Option<String>)`](crate::operation::start_matching_job::builders::StartMatchingJobFluentBuilder::set_workflow_name):<br>required: **true**<br><p>The name of the matching job to be retrieved.</p><br>
7    /// - On success, responds with [`StartMatchingJobOutput`](crate::operation::start_matching_job::StartMatchingJobOutput) with field(s):
8    ///   - [`job_id(String)`](crate::operation::start_matching_job::StartMatchingJobOutput::job_id): <p>The ID of the job.</p>
9    /// - On failure, responds with [`SdkError<StartMatchingJobError>`](crate::operation::start_matching_job::StartMatchingJobError)
10    pub fn start_matching_job(&self) -> crate::operation::start_matching_job::builders::StartMatchingJobFluentBuilder {
11        crate::operation::start_matching_job::builders::StartMatchingJobFluentBuilder::new(self.handle.clone())
12    }
13}