Struct aws_sdk_datapipeline::output::QueryObjectsOutput [−][src]
#[non_exhaustive]pub struct QueryObjectsOutput {
pub ids: Option<Vec<String>>,
pub marker: Option<String>,
pub has_more_results: bool,
}
Expand description
Contains the output of QueryObjects.
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.ids: Option<Vec<String>>
The identifiers that match the query selectors.
marker: Option<String>
The starting point for the next page of results. To view the next page of results, call QueryObjects
again with this marker value. If the value is null, there are no more results.
has_more_results: bool
Indicates whether there are more results that can be obtained by a subsequent call.
Implementations
The starting point for the next page of results. To view the next page of results, call QueryObjects
again with this marker value. If the value is null, there are no more results.
Indicates whether there are more results that can be obtained by a subsequent call.
Creates a new builder-style object to manufacture QueryObjectsOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for QueryObjectsOutput
impl Send for QueryObjectsOutput
impl Sync for QueryObjectsOutput
impl Unpin for QueryObjectsOutput
impl UnwindSafe for QueryObjectsOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more