1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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): <p>The ID of the workspace that contains the properties to set.</p>
    ///   - [`entries(Vec<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): <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>
    /// - On success, responds with [`BatchPutPropertyValuesOutput`](crate::operation::batch_put_property_values::BatchPutPropertyValuesOutput) with field(s):
    ///   - [`error_entries(Option<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())
    }
}