// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`BatchCreateDataTableValue`](crate::operation::batch_create_data_table_value::builders::BatchCreateDataTableValueFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`instance_id(impl Into<String>)`](crate::operation::batch_create_data_table_value::builders::BatchCreateDataTableValueFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::batch_create_data_table_value::builders::BatchCreateDataTableValueFluentBuilder::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::batch_create_data_table_value::builders::BatchCreateDataTableValueFluentBuilder::data_table_id) / [`set_data_table_id(Option<String>)`](crate::operation::batch_create_data_table_value::builders::BatchCreateDataTableValueFluentBuilder::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 no alias is provided, the default behavior is identical to providing the $LATEST alias.</p><br>
/// - [`values(DataTableValue)`](crate::operation::batch_create_data_table_value::builders::BatchCreateDataTableValueFluentBuilder::values) / [`set_values(Option<Vec::<DataTableValue>>)`](crate::operation::batch_create_data_table_value::builders::BatchCreateDataTableValueFluentBuilder::set_values):<br>required: **true**<br><p>A list of values to create. Each value must specify the attribute name and optionally primary values if the table has primary attributes.</p><br>
/// - On success, responds with [`BatchCreateDataTableValueOutput`](crate::operation::batch_create_data_table_value::BatchCreateDataTableValueOutput) with field(s):
/// - [`successful(Vec::<BatchCreateDataTableValueSuccessResult>)`](crate::operation::batch_create_data_table_value::BatchCreateDataTableValueOutput::successful): <p>A list of successfully created values with their identifiers and lock versions.</p>
/// - [`failed(Vec::<BatchCreateDataTableValueFailureResult>)`](crate::operation::batch_create_data_table_value::BatchCreateDataTableValueOutput::failed): <p>A list of values that failed to be created with error messages explaining the failure reason.</p>
/// - On failure, responds with [`SdkError<BatchCreateDataTableValueError>`](crate::operation::batch_create_data_table_value::BatchCreateDataTableValueError)
pub fn batch_create_data_table_value(&self) -> crate::operation::batch_create_data_table_value::builders::BatchCreateDataTableValueFluentBuilder {
crate::operation::batch_create_data_table_value::builders::BatchCreateDataTableValueFluentBuilder::new(self.handle.clone())
}
}