1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetIdMappingJob`](crate::operation::get_id_mapping_job::builders::GetIdMappingJobFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`GetIdMappingJobOutput`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput) with field(s):
    ///   - [`job_id(String)`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput::job_id): <p>The ID of the job.</p>
    ///   - [`status(JobStatus)`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput::status): <p>The current status of the job.</p>
    ///   - [`start_time(DateTime)`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput::start_time): <p>The time at which the job was started.</p>
    ///   - [`end_time(Option<DateTime>)`](crate::operation::get_id_mapping_job::GetIdMappingJobOutput::end_time): <p>The time at which the job has finished.</p>
    ///   - [`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>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<GetIdMappingJobError>`](crate::operation::get_id_mapping_job::GetIdMappingJobError)
    pub fn get_id_mapping_job(&self) -> crate::operation::get_id_mapping_job::builders::GetIdMappingJobFluentBuilder {
        crate::operation::get_id_mapping_job::builders::GetIdMappingJobFluentBuilder::new(self.handle.clone())
    }
}