aws_sdk_entityresolution/client/get_id_mapping_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 [`GetIdMappingWorkflow`](crate::operation::get_id_mapping_workflow::builders::GetIdMappingWorkflowFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`workflow_name(impl Into<String>)`](crate::operation::get_id_mapping_workflow::builders::GetIdMappingWorkflowFluentBuilder::workflow_name) / [`set_workflow_name(Option<String>)`](crate::operation::get_id_mapping_workflow::builders::GetIdMappingWorkflowFluentBuilder::set_workflow_name):<br>required: **true**<br><p>The name of the workflow.</p><br>
7 /// - On success, responds with [`GetIdMappingWorkflowOutput`](crate::operation::get_id_mapping_workflow::GetIdMappingWorkflowOutput) with field(s):
8 /// - [`workflow_name(String)`](crate::operation::get_id_mapping_workflow::GetIdMappingWorkflowOutput::workflow_name): <p>The name of the workflow.</p>
9 /// - [`workflow_arn(String)`](crate::operation::get_id_mapping_workflow::GetIdMappingWorkflowOutput::workflow_arn): <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>IdMappingWorkflow</code> .</p>
10 /// - [`description(Option<String>)`](crate::operation::get_id_mapping_workflow::GetIdMappingWorkflowOutput::description): <p>A description of the workflow.</p>
11 /// - [`input_source_config(Vec::<IdMappingWorkflowInputSource>)`](crate::operation::get_id_mapping_workflow::GetIdMappingWorkflowOutput::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(Option<Vec::<IdMappingWorkflowOutputSource>>)`](crate::operation::get_id_mapping_workflow::GetIdMappingWorkflowOutput::output_source_config): <p>A list of <code>OutputSource</code> objects, each of which contains fields <code>outputS3Path</code> and <code>KMSArn</code>.</p>
13 /// - [`id_mapping_techniques(Option<IdMappingTechniques>)`](crate::operation::get_id_mapping_workflow::GetIdMappingWorkflowOutput::id_mapping_techniques): <p>An object which defines the ID mapping technique and any additional configurations.</p>
14 /// - [`created_at(DateTime)`](crate::operation::get_id_mapping_workflow::GetIdMappingWorkflowOutput::created_at): <p>The timestamp of when the workflow was created.</p>
15 /// - [`updated_at(DateTime)`](crate::operation::get_id_mapping_workflow::GetIdMappingWorkflowOutput::updated_at): <p>The timestamp of when the workflow was last updated.</p>
16 /// - [`role_arn(String)`](crate::operation::get_id_mapping_workflow::GetIdMappingWorkflowOutput::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>
17 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_id_mapping_workflow::GetIdMappingWorkflowOutput::tags): <p>The tags used to organize, track, or control access for this resource.</p>
18 /// - On failure, responds with [`SdkError<GetIdMappingWorkflowError>`](crate::operation::get_id_mapping_workflow::GetIdMappingWorkflowError)
19 pub fn get_id_mapping_workflow(&self) -> crate::operation::get_id_mapping_workflow::builders::GetIdMappingWorkflowFluentBuilder {
20 crate::operation::get_id_mapping_workflow::builders::GetIdMappingWorkflowFluentBuilder::new(self.handle.clone())
21 }
22}