aws_sdk_entityresolution/client/get_id_mapping_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 [`GetIdMappingJob`](crate::operation::get_id_mapping_job::builders::GetIdMappingJobFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`workflow_name(impl Into<String>)`](crate::operation::get_id_mapping_job::builders::GetIdMappingJobFluentBuilder::workflow_name) / [`set_workflow_name(Option<String>)`](crate::operation::get_id_mapping_job::builders::GetIdMappingJobFluentBuilder::set_workflow_name):<br>required: **true**<br><p>The name of the workflow.</p><br>
7 /// - [`job_id(impl Into<String>)`](crate::operation::get_id_mapping_job::builders::GetIdMappingJobFluentBuilder::job_id) / [`set_job_id(Option<String>)`](crate::operation::get_id_mapping_job::builders::GetIdMappingJobFluentBuilder::set_job_id):<br>required: **true**<br><p>The ID of the job.</p><br>
8 /// - On success, responds with [`GetIdMappingJobOutput`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput) with field(s):
9 /// - [`job_id(String)`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput::job_id): <p>The ID of the job.</p>
10 /// - [`status(JobStatus)`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput::status): <p>The current status of the job.</p>
11 /// - [`start_time(DateTime)`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput::start_time): <p>The time at which the job was started.</p>
12 /// - [`end_time(Option<DateTime>)`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput::end_time): <p>The time at which the job has finished.</p>
13 /// - [`metrics(Option<IdMappingJobMetrics>)`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput::metrics): <p>Metrics associated with the execution, specifically total records processed, unique IDs generated, and records the execution skipped.</p>
14 /// - [`error_details(Option<ErrorDetails>)`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput::error_details): <p>An object containing an error message, if there was an error.</p>
15 /// - [`output_source_config(Option<Vec::<IdMappingJobOutputSource>>)`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput::output_source_config): <p>A list of <code>OutputSource</code> objects.</p>
16 /// - On failure, responds with [`SdkError<GetIdMappingJobError>`](crate::operation::get_id_mapping_job::GetIdMappingJobError)
17 pub fn get_id_mapping_job(&self) -> crate::operation::get_id_mapping_job::builders::GetIdMappingJobFluentBuilder {
18 crate::operation::get_id_mapping_job::builders::GetIdMappingJobFluentBuilder::new(self.handle.clone())
19 }
20}