aws_sdk_entityresolution/client/
start_matching_job.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartMatchingJob`](crate::operation::start_matching_job::builders::StartMatchingJobFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    /// - On success, responds with [`StartMatchingJobOutput`](crate::operation::start_matching_job::StartMatchingJobOutput) with field(s):
    ///   - [`job_id(String)`](crate::operation::start_matching_job::StartMatchingJobOutput::job_id): <p>The ID of the job.</p>
    /// - On failure, responds with [`SdkError<StartMatchingJobError>`](crate::operation::start_matching_job::StartMatchingJobError)
    pub fn start_matching_job(&self) -> crate::operation::start_matching_job::builders::StartMatchingJobFluentBuilder {
        crate::operation::start_matching_job::builders::StartMatchingJobFluentBuilder::new(self.handle.clone())
    }
}