aws_sdk_iotsitewise/client/batch_put_asset_property_value.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 [`BatchPutAssetPropertyValue`](crate::operation::batch_put_asset_property_value::builders::BatchPutAssetPropertyValueFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`enable_partial_entry_processing(bool)`](crate::operation::batch_put_asset_property_value::builders::BatchPutAssetPropertyValueFluentBuilder::enable_partial_entry_processing) / [`set_enable_partial_entry_processing(Option<bool>)`](crate::operation::batch_put_asset_property_value::builders::BatchPutAssetPropertyValueFluentBuilder::set_enable_partial_entry_processing):<br>required: **false**<br><p>This setting enables partial ingestion at entry-level. If set to <code>true</code>, we ingest all TQVs not resulting in an error. If set to <code>false</code>, an invalid TQV fails ingestion of the entire entry that contains it.</p><br>
7 /// - [`entries(PutAssetPropertyValueEntry)`](crate::operation::batch_put_asset_property_value::builders::BatchPutAssetPropertyValueFluentBuilder::entries) / [`set_entries(Option<Vec::<PutAssetPropertyValueEntry>>)`](crate::operation::batch_put_asset_property_value::builders::BatchPutAssetPropertyValueFluentBuilder::set_entries):<br>required: **true**<br><p>The list of asset property value entries for the batch put request. You can specify up to 10 entries per request.</p><br>
8 /// - On success, responds with [`BatchPutAssetPropertyValueOutput`](crate::operation::batch_put_asset_property_value::BatchPutAssetPropertyValueOutput) with field(s):
9 /// - [`error_entries(Vec::<BatchPutAssetPropertyErrorEntry>)`](crate::operation::batch_put_asset_property_value::BatchPutAssetPropertyValueOutput::error_entries): <p>A list of the errors (if any) associated with the batch put request. Each error entry contains the <code>entryId</code> of the entry that failed.</p>
10 /// - On failure, responds with [`SdkError<BatchPutAssetPropertyValueError>`](crate::operation::batch_put_asset_property_value::BatchPutAssetPropertyValueError)
11 pub fn batch_put_asset_property_value(
12 &self,
13 ) -> crate::operation::batch_put_asset_property_value::builders::BatchPutAssetPropertyValueFluentBuilder {
14 crate::operation::batch_put_asset_property_value::builders::BatchPutAssetPropertyValueFluentBuilder::new(self.handle.clone())
15 }
16}