aws_sdk_iotsitewise/client/
batch_put_asset_property_value.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchPutAssetPropertyValue`](crate::operation::batch_put_asset_property_value::builders::BatchPutAssetPropertyValueFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`BatchPutAssetPropertyValueOutput`](crate::operation::batch_put_asset_property_value::BatchPutAssetPropertyValueOutput) with field(s):
    ///   - [`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>
    /// - On failure, responds with [`SdkError<BatchPutAssetPropertyValueError>`](crate::operation::batch_put_asset_property_value::BatchPutAssetPropertyValueError)
    pub fn batch_put_asset_property_value(
        &self,
    ) -> crate::operation::batch_put_asset_property_value::builders::BatchPutAssetPropertyValueFluentBuilder {
        crate::operation::batch_put_asset_property_value::builders::BatchPutAssetPropertyValueFluentBuilder::new(self.handle.clone())
    }
}