aws_sdk_iottwinmaker/client/
batch_put_property_values.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 [`BatchPutPropertyValues`](crate::operation::batch_put_property_values::builders::BatchPutPropertyValuesFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>
7    ///   - [`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>
8    /// - On success, responds with [`BatchPutPropertyValuesOutput`](crate::operation::batch_put_property_values::BatchPutPropertyValuesOutput) with field(s):
9    ///   - [`error_entries(Vec::<BatchPutPropertyErrorEntry>)`](crate::operation::batch_put_property_values::BatchPutPropertyValuesOutput::error_entries): <p>Entries that caused errors in the batch put operation.</p>
10    /// - On failure, responds with [`SdkError<BatchPutPropertyValuesError>`](crate::operation::batch_put_property_values::BatchPutPropertyValuesError)
11    pub fn batch_put_property_values(&self) -> crate::operation::batch_put_property_values::builders::BatchPutPropertyValuesFluentBuilder {
12        crate::operation::batch_put_property_values::builders::BatchPutPropertyValuesFluentBuilder::new(self.handle.clone())
13    }
14}