Struct aws_sdk_iotsitewise::operation::batch_get_asset_property_value::BatchGetAssetPropertyValueOutput
source · #[non_exhaustive]pub struct BatchGetAssetPropertyValueOutput {
pub error_entries: Vec<BatchGetAssetPropertyValueErrorEntry>,
pub success_entries: Vec<BatchGetAssetPropertyValueSuccessEntry>,
pub skipped_entries: Vec<BatchGetAssetPropertyValueSkippedEntry>,
pub next_token: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.error_entries: 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.
success_entries: 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.
skipped_entries: 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.
next_token: Option<String>The token for the next set of results, or null if there are no additional results.
Implementations§
source§impl BatchGetAssetPropertyValueOutput
impl BatchGetAssetPropertyValueOutput
sourcepub fn error_entries(&self) -> &[BatchGetAssetPropertyValueErrorEntry]
pub fn error_entries(&self) -> &[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) -> &[BatchGetAssetPropertyValueSuccessEntry]
pub fn success_entries(&self) -> &[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) -> &[BatchGetAssetPropertyValueSkippedEntry]
pub fn skipped_entries(&self) -> &[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) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results, or null if there are no additional results.
source§impl BatchGetAssetPropertyValueOutput
impl BatchGetAssetPropertyValueOutput
sourcepub fn builder() -> BatchGetAssetPropertyValueOutputBuilder
pub fn builder() -> BatchGetAssetPropertyValueOutputBuilder
Creates a new builder-style object to manufacture BatchGetAssetPropertyValueOutput.
Trait Implementations§
source§impl Clone for BatchGetAssetPropertyValueOutput
impl Clone for BatchGetAssetPropertyValueOutput
source§fn clone(&self) -> BatchGetAssetPropertyValueOutput
fn clone(&self) -> BatchGetAssetPropertyValueOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for BatchGetAssetPropertyValueOutput
impl PartialEq for BatchGetAssetPropertyValueOutput
source§fn eq(&self, other: &BatchGetAssetPropertyValueOutput) -> bool
fn eq(&self, other: &BatchGetAssetPropertyValueOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for BatchGetAssetPropertyValueOutput
impl RequestId for BatchGetAssetPropertyValueOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for BatchGetAssetPropertyValueOutput
Auto Trait Implementations§
impl Freeze for BatchGetAssetPropertyValueOutput
impl RefUnwindSafe for BatchGetAssetPropertyValueOutput
impl Send for BatchGetAssetPropertyValueOutput
impl Sync for BatchGetAssetPropertyValueOutput
impl Unpin for BatchGetAssetPropertyValueOutput
impl UnwindSafe for BatchGetAssetPropertyValueOutput
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