Struct aws_sdk_iotsitewise::operation::batch_get_asset_property_aggregates::BatchGetAssetPropertyAggregatesOutput
source · #[non_exhaustive]pub struct BatchGetAssetPropertyAggregatesOutput {
pub error_entries: Vec<BatchGetAssetPropertyAggregatesErrorEntry>,
pub success_entries: Vec<BatchGetAssetPropertyAggregatesSuccessEntry>,
pub skipped_entries: Vec<BatchGetAssetPropertyAggregatesSkippedEntry>,
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<BatchGetAssetPropertyAggregatesErrorEntry>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<BatchGetAssetPropertyAggregatesSuccessEntry>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<BatchGetAssetPropertyAggregatesSkippedEntry>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 BatchGetAssetPropertyAggregatesOutput
impl BatchGetAssetPropertyAggregatesOutput
sourcepub fn error_entries(&self) -> &[BatchGetAssetPropertyAggregatesErrorEntry]
pub fn error_entries(&self) -> &[BatchGetAssetPropertyAggregatesErrorEntry]
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) -> &[BatchGetAssetPropertyAggregatesSuccessEntry]
pub fn success_entries(&self) -> &[BatchGetAssetPropertyAggregatesSuccessEntry]
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) -> &[BatchGetAssetPropertyAggregatesSkippedEntry]
pub fn skipped_entries(&self) -> &[BatchGetAssetPropertyAggregatesSkippedEntry]
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 BatchGetAssetPropertyAggregatesOutput
impl BatchGetAssetPropertyAggregatesOutput
sourcepub fn builder() -> BatchGetAssetPropertyAggregatesOutputBuilder
pub fn builder() -> BatchGetAssetPropertyAggregatesOutputBuilder
Creates a new builder-style object to manufacture BatchGetAssetPropertyAggregatesOutput.
Trait Implementations§
source§impl Clone for BatchGetAssetPropertyAggregatesOutput
impl Clone for BatchGetAssetPropertyAggregatesOutput
source§fn clone(&self) -> BatchGetAssetPropertyAggregatesOutput
fn clone(&self) -> BatchGetAssetPropertyAggregatesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for BatchGetAssetPropertyAggregatesOutput
impl PartialEq for BatchGetAssetPropertyAggregatesOutput
source§fn eq(&self, other: &BatchGetAssetPropertyAggregatesOutput) -> bool
fn eq(&self, other: &BatchGetAssetPropertyAggregatesOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for BatchGetAssetPropertyAggregatesOutput
impl RequestId for BatchGetAssetPropertyAggregatesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for BatchGetAssetPropertyAggregatesOutput
Auto Trait Implementations§
impl Freeze for BatchGetAssetPropertyAggregatesOutput
impl RefUnwindSafe for BatchGetAssetPropertyAggregatesOutput
impl Send for BatchGetAssetPropertyAggregatesOutput
impl Sync for BatchGetAssetPropertyAggregatesOutput
impl Unpin for BatchGetAssetPropertyAggregatesOutput
impl UnwindSafe for BatchGetAssetPropertyAggregatesOutput
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