Struct aws_sdk_iottwinmaker::operation::batch_put_property_values::builders::BatchPutPropertyValuesFluentBuilder
source · pub struct BatchPutPropertyValuesFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to BatchPutPropertyValues.
Sets values for multiple time series properties.
Implementations§
source§impl BatchPutPropertyValuesFluentBuilder
impl BatchPutPropertyValuesFluentBuilder
sourcepub fn as_input(&self) -> &BatchPutPropertyValuesInputBuilder
pub fn as_input(&self) -> &BatchPutPropertyValuesInputBuilder
Access the BatchPutPropertyValues as a reference.
sourcepub async fn send(
self,
) -> Result<BatchPutPropertyValuesOutput, SdkError<BatchPutPropertyValuesError, HttpResponse>>
pub async fn send( self, ) -> Result<BatchPutPropertyValuesOutput, SdkError<BatchPutPropertyValuesError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<BatchPutPropertyValuesOutput, BatchPutPropertyValuesError, Self>
pub fn customize( self, ) -> CustomizableOperation<BatchPutPropertyValuesOutput, BatchPutPropertyValuesError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn workspace_id(self, input: impl Into<String>) -> Self
pub fn workspace_id(self, input: impl Into<String>) -> Self
The ID of the workspace that contains the properties to set.
sourcepub fn set_workspace_id(self, input: Option<String>) -> Self
pub fn set_workspace_id(self, input: Option<String>) -> Self
The ID of the workspace that contains the properties to set.
sourcepub fn get_workspace_id(&self) -> &Option<String>
pub fn get_workspace_id(&self) -> &Option<String>
The ID of the workspace that contains the properties to set.
sourcepub fn entries(self, input: PropertyValueEntry) -> Self
pub fn entries(self, input: PropertyValueEntry) -> Self
Appends an item to entries.
To override the contents of this collection use set_entries.
An object that maps strings to the property value entries to set. Each string in the mapping must be unique to this object.
sourcepub fn set_entries(self, input: Option<Vec<PropertyValueEntry>>) -> Self
pub fn set_entries(self, input: Option<Vec<PropertyValueEntry>>) -> Self
An object that maps strings to the property value entries to set. Each string in the mapping must be unique to this object.
sourcepub fn get_entries(&self) -> &Option<Vec<PropertyValueEntry>>
pub fn get_entries(&self) -> &Option<Vec<PropertyValueEntry>>
An object that maps strings to the property value entries to set. Each string in the mapping must be unique to this object.
Trait Implementations§
source§impl Clone for BatchPutPropertyValuesFluentBuilder
impl Clone for BatchPutPropertyValuesFluentBuilder
source§fn clone(&self) -> BatchPutPropertyValuesFluentBuilder
fn clone(&self) -> BatchPutPropertyValuesFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for BatchPutPropertyValuesFluentBuilder
impl !RefUnwindSafe for BatchPutPropertyValuesFluentBuilder
impl Send for BatchPutPropertyValuesFluentBuilder
impl Sync for BatchPutPropertyValuesFluentBuilder
impl Unpin for BatchPutPropertyValuesFluentBuilder
impl !UnwindSafe for BatchPutPropertyValuesFluentBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more