Struct aws_sdk_iotsitewise::operation::batch_get_asset_property_value::builders::BatchGetAssetPropertyValueOutputBuilder
source · #[non_exhaustive]pub struct BatchGetAssetPropertyValueOutputBuilder { /* private fields */ }Expand description
A builder for BatchGetAssetPropertyValueOutput.
Implementations§
source§impl BatchGetAssetPropertyValueOutputBuilder
impl BatchGetAssetPropertyValueOutputBuilder
sourcepub fn error_entries(self, input: BatchGetAssetPropertyValueErrorEntry) -> Self
pub fn error_entries(self, input: BatchGetAssetPropertyValueErrorEntry) -> Self
Appends an item to error_entries.
To override the contents of this collection use set_error_entries.
A list of the errors (if any) associated with the batch request. Each error entry contains the entryId of the entry that failed.
sourcepub fn set_error_entries(
self,
input: Option<Vec<BatchGetAssetPropertyValueErrorEntry>>
) -> Self
pub fn set_error_entries( self, input: Option<Vec<BatchGetAssetPropertyValueErrorEntry>> ) -> Self
A list of the errors (if any) associated with the batch request. Each error entry contains the entryId of the entry that failed.
sourcepub fn get_error_entries(
&self
) -> &Option<Vec<BatchGetAssetPropertyValueErrorEntry>>
pub fn get_error_entries( &self ) -> &Option<Vec<BatchGetAssetPropertyValueErrorEntry>>
A list of the errors (if any) associated with the batch request. Each error entry contains the entryId of the entry that failed.
sourcepub fn success_entries(
self,
input: BatchGetAssetPropertyValueSuccessEntry
) -> Self
pub fn success_entries( self, input: BatchGetAssetPropertyValueSuccessEntry ) -> Self
Appends an item to success_entries.
To override the contents of this collection use set_success_entries.
A list of entries that were processed successfully by this batch request. Each success entry contains the entryId of the entry that succeeded and the latest query result.
sourcepub fn set_success_entries(
self,
input: Option<Vec<BatchGetAssetPropertyValueSuccessEntry>>
) -> Self
pub fn set_success_entries( self, input: Option<Vec<BatchGetAssetPropertyValueSuccessEntry>> ) -> Self
A list of entries that were processed successfully by this batch request. Each success entry contains the entryId of the entry that succeeded and the latest query result.
sourcepub fn get_success_entries(
&self
) -> &Option<Vec<BatchGetAssetPropertyValueSuccessEntry>>
pub fn get_success_entries( &self ) -> &Option<Vec<BatchGetAssetPropertyValueSuccessEntry>>
A list of entries that were processed successfully by this batch request. Each success entry contains the entryId of the entry that succeeded and the latest query result.
sourcepub fn skipped_entries(
self,
input: BatchGetAssetPropertyValueSkippedEntry
) -> Self
pub fn skipped_entries( self, input: BatchGetAssetPropertyValueSkippedEntry ) -> Self
Appends an item to skipped_entries.
To override the contents of this collection use set_skipped_entries.
A list of entries that were not processed by this batch request. because these entries had been completely processed by previous paginated requests. Each skipped entry contains the entryId of the entry that skipped.
sourcepub fn set_skipped_entries(
self,
input: Option<Vec<BatchGetAssetPropertyValueSkippedEntry>>
) -> Self
pub fn set_skipped_entries( self, input: Option<Vec<BatchGetAssetPropertyValueSkippedEntry>> ) -> Self
A list of entries that were not processed by this batch request. because these entries had been completely processed by previous paginated requests. Each skipped entry contains the entryId of the entry that skipped.
sourcepub fn get_skipped_entries(
&self
) -> &Option<Vec<BatchGetAssetPropertyValueSkippedEntry>>
pub fn get_skipped_entries( &self ) -> &Option<Vec<BatchGetAssetPropertyValueSkippedEntry>>
A list of entries that were not processed by this batch request. because these entries had been completely processed by previous paginated requests. Each skipped entry contains the entryId of the entry that skipped.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token for the next set of results, or null if there are no additional results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token for the next set of results, or null if there are no additional results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token for the next set of results, or null if there are no additional results.
sourcepub fn build(self) -> Result<BatchGetAssetPropertyValueOutput, BuildError>
pub fn build(self) -> Result<BatchGetAssetPropertyValueOutput, BuildError>
Consumes the builder and constructs a BatchGetAssetPropertyValueOutput.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for BatchGetAssetPropertyValueOutputBuilder
impl Clone for BatchGetAssetPropertyValueOutputBuilder
source§fn clone(&self) -> BatchGetAssetPropertyValueOutputBuilder
fn clone(&self) -> BatchGetAssetPropertyValueOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for BatchGetAssetPropertyValueOutputBuilder
impl Default for BatchGetAssetPropertyValueOutputBuilder
source§fn default() -> BatchGetAssetPropertyValueOutputBuilder
fn default() -> BatchGetAssetPropertyValueOutputBuilder
source§impl PartialEq for BatchGetAssetPropertyValueOutputBuilder
impl PartialEq for BatchGetAssetPropertyValueOutputBuilder
source§fn eq(&self, other: &BatchGetAssetPropertyValueOutputBuilder) -> bool
fn eq(&self, other: &BatchGetAssetPropertyValueOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchGetAssetPropertyValueOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetAssetPropertyValueOutputBuilder
impl RefUnwindSafe for BatchGetAssetPropertyValueOutputBuilder
impl Send for BatchGetAssetPropertyValueOutputBuilder
impl Sync for BatchGetAssetPropertyValueOutputBuilder
impl Unpin for BatchGetAssetPropertyValueOutputBuilder
impl UnwindSafe for BatchGetAssetPropertyValueOutputBuilder
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> 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