aws_sdk_cleanrooms/client/
populate_id_mapping_table.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 [`PopulateIdMappingTable`](crate::operation::populate_id_mapping_table::builders::PopulateIdMappingTableFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`id_mapping_table_identifier(impl Into<String>)`](crate::operation::populate_id_mapping_table::builders::PopulateIdMappingTableFluentBuilder::id_mapping_table_identifier) / [`set_id_mapping_table_identifier(Option<String>)`](crate::operation::populate_id_mapping_table::builders::PopulateIdMappingTableFluentBuilder::set_id_mapping_table_identifier):<br>required: **true**<br><p>The unique identifier of the ID mapping table that you want to populate.</p><br>
7    ///   - [`membership_identifier(impl Into<String>)`](crate::operation::populate_id_mapping_table::builders::PopulateIdMappingTableFluentBuilder::membership_identifier) / [`set_membership_identifier(Option<String>)`](crate::operation::populate_id_mapping_table::builders::PopulateIdMappingTableFluentBuilder::set_membership_identifier):<br>required: **true**<br><p>The unique identifier of the membership that contains the ID mapping table that you want to populate.</p><br>
8    ///   - [`job_type(JobType)`](crate::operation::populate_id_mapping_table::builders::PopulateIdMappingTableFluentBuilder::job_type) / [`set_job_type(Option<JobType>)`](crate::operation::populate_id_mapping_table::builders::PopulateIdMappingTableFluentBuilder::set_job_type):<br>required: **false**<br><p>The job type of the rule-based ID mapping job. Valid values include:</p> <p><code>INCREMENTAL</code>: Processes only new or changed data since the last job run. This is the default job type if the ID mapping workflow was created in Entity Resolution with <code>incrementalRunConfig</code> specified.</p> <p><code>BATCH</code>: Processes all data from the input source, regardless of previous job runs. This is the default job type if the ID mapping workflow was created in Entity Resolution but <code>incrementalRunConfig</code> wasn't specified.</p> <p><code>DELETE_ONLY</code>: Processes only deletion requests from <code>BatchDeleteUniqueId</code>, which is set in Entity Resolution.</p> <p>For more information about <code>incrementalRunConfig</code> and <code>BatchDeleteUniqueId</code>, see the <a href="https://docs.aws.amazon.com/entityresolution/latest/apireference/Welcome.html">Entity Resolution API Reference</a>.</p><br>
9    /// - On success, responds with [`PopulateIdMappingTableOutput`](crate::operation::populate_id_mapping_table::PopulateIdMappingTableOutput) with field(s):
10    ///   - [`id_mapping_job_id(String)`](crate::operation::populate_id_mapping_table::PopulateIdMappingTableOutput::id_mapping_job_id): <p>The unique identifier of the mapping job that will populate the ID mapping table.</p>
11    /// - On failure, responds with [`SdkError<PopulateIdMappingTableError>`](crate::operation::populate_id_mapping_table::PopulateIdMappingTableError)
12    pub fn populate_id_mapping_table(&self) -> crate::operation::populate_id_mapping_table::builders::PopulateIdMappingTableFluentBuilder {
13        crate::operation::populate_id_mapping_table::builders::PopulateIdMappingTableFluentBuilder::new(self.handle.clone())
14    }
15}