Struct aws_sdk_timestreamquery::operation::list_scheduled_queries::ListScheduledQueriesInput
source · #[non_exhaustive]pub struct ListScheduledQueriesInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.max_results: Option<i32>
The maximum number of items to return in the output. If the total number of items available is more than the value specified, a NextToken
is provided in the output. To resume pagination, provide the NextToken
value as the argument to the subsequent call to ListScheduledQueriesRequest
.
next_token: Option<String>
A pagination token to resume pagination.
Implementations§
source§impl ListScheduledQueriesInput
impl ListScheduledQueriesInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to return in the output. If the total number of items available is more than the value specified, a NextToken
is provided in the output. To resume pagination, provide the NextToken
value as the argument to the subsequent call to ListScheduledQueriesRequest
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A pagination token to resume pagination.
source§impl ListScheduledQueriesInput
impl ListScheduledQueriesInput
sourcepub fn builder() -> ListScheduledQueriesInputBuilder
pub fn builder() -> ListScheduledQueriesInputBuilder
Creates a new builder-style object to manufacture ListScheduledQueriesInput
.
Trait Implementations§
source§impl Clone for ListScheduledQueriesInput
impl Clone for ListScheduledQueriesInput
source§fn clone(&self) -> ListScheduledQueriesInput
fn clone(&self) -> ListScheduledQueriesInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ListScheduledQueriesInput
impl Debug for ListScheduledQueriesInput
source§impl PartialEq for ListScheduledQueriesInput
impl PartialEq for ListScheduledQueriesInput
source§fn eq(&self, other: &ListScheduledQueriesInput) -> bool
fn eq(&self, other: &ListScheduledQueriesInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListScheduledQueriesInput
Auto Trait Implementations§
impl RefUnwindSafe for ListScheduledQueriesInput
impl Send for ListScheduledQueriesInput
impl Sync for ListScheduledQueriesInput
impl Unpin for ListScheduledQueriesInput
impl UnwindSafe for ListScheduledQueriesInput
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
Mutably borrows from an owned value. Read more
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>
Creates a shared type from an unshared type.