// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateDataTablePrimaryValues`](crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`instance_id(impl Into<String>)`](crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder::set_instance_id):<br>required: **true**<br><p>The unique identifier for the Amazon Connect instance.</p><br>
/// - [`data_table_id(impl Into<String>)`](crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder::data_table_id) / [`set_data_table_id(Option<String>)`](crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder::set_data_table_id):<br>required: **true**<br><p>The unique identifier for the data table. Must also accept the table ARN with or without a version alias. If the version is provided as part of the identifier or ARN, the version must be one of the two available system managed aliases, $SAVED or $LATEST.</p><br>
/// - [`primary_values(PrimaryValue)`](crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder::primary_values) / [`set_primary_values(Option<Vec::<PrimaryValue>>)`](crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder::set_primary_values):<br>required: **true**<br><p>The current primary values for the record. Required and must include values for all primary attributes. Fails if the table has primary attributes and some primary values are omitted.</p><br>
/// - [`new_primary_values(PrimaryValue)`](crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder::new_primary_values) / [`set_new_primary_values(Option<Vec::<PrimaryValue>>)`](crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder::set_new_primary_values):<br>required: **true**<br><p>The new primary values for the record. Required and must include values for all primary attributes. The combination must be unique within the table.</p><br>
/// - [`lock_version(DataTableLockVersion)`](crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder::lock_version) / [`set_lock_version(Option<DataTableLockVersion>)`](crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder::set_lock_version):<br>required: **true**<br><p>The lock version information required for optimistic locking to prevent concurrent modifications.</p><br>
/// - On success, responds with [`UpdateDataTablePrimaryValuesOutput`](crate::operation::update_data_table_primary_values::UpdateDataTablePrimaryValuesOutput) with field(s):
/// - [`lock_version(Option<DataTableLockVersion>)`](crate::operation::update_data_table_primary_values::UpdateDataTablePrimaryValuesOutput::lock_version): <p>The updated lock version information for the data table and affected components after the primary values change.</p>
/// - On failure, responds with [`SdkError<UpdateDataTablePrimaryValuesError>`](crate::operation::update_data_table_primary_values::UpdateDataTablePrimaryValuesError)
pub fn update_data_table_primary_values(
&self,
) -> crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder {
crate::operation::update_data_table_primary_values::builders::UpdateDataTablePrimaryValuesFluentBuilder::new(self.handle.clone())
}
}