1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchPutPropertyValues`](crate::operation::batch_put_property_values::builders::BatchPutPropertyValuesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`workspace_id(impl Into<String>)`](crate::operation::batch_put_property_values::builders::BatchPutPropertyValuesFluentBuilder::workspace_id) / [`set_workspace_id(Option<String>)`](crate::operation::batch_put_property_values::builders::BatchPutPropertyValuesFluentBuilder::set_workspace_id):<br>required: **true**<br><p>The ID of the workspace that contains the properties to set.</p><br>
    ///   - [`entries(PropertyValueEntry)`](crate::operation::batch_put_property_values::builders::BatchPutPropertyValuesFluentBuilder::entries) / [`set_entries(Option<Vec::<PropertyValueEntry>>)`](crate::operation::batch_put_property_values::builders::BatchPutPropertyValuesFluentBuilder::set_entries):<br>required: **true**<br><p>An object that maps strings to the property value entries to set. Each string in the mapping must be unique to this object.</p><br>
    /// - On success, responds with [`BatchPutPropertyValuesOutput`](crate::operation::batch_put_property_values::BatchPutPropertyValuesOutput) with field(s):
    ///   - [`error_entries(Vec::<BatchPutPropertyErrorEntry>)`](crate::operation::batch_put_property_values::BatchPutPropertyValuesOutput::error_entries): <p>Entries that caused errors in the batch put operation.</p>
    /// - On failure, responds with [`SdkError<BatchPutPropertyValuesError>`](crate::operation::batch_put_property_values::BatchPutPropertyValuesError)
    pub fn batch_put_property_values(&self) -> crate::operation::batch_put_property_values::builders::BatchPutPropertyValuesFluentBuilder {
        crate::operation::batch_put_property_values::builders::BatchPutPropertyValuesFluentBuilder::new(self.handle.clone())
    }
}