Struct aws_sdk_qldb::operation::list_ledgers::ListLedgersInput
source · #[non_exhaustive]pub struct ListLedgersInput {
pub max_results: Option<i32>,
pub next_token: Option<String>,
}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.max_results: Option<i32>The maximum number of results to return in a single ListLedgers request. (The actual number of results returned might be fewer.)
next_token: Option<String>A pagination token, indicating that you want to retrieve the next page of results. If you received a value for NextToken in the response from a previous ListLedgers call, then you should use that value as input here.
Implementations§
source§impl ListLedgersInput
impl ListLedgersInput
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in a single ListLedgers request. (The actual number of results returned might be fewer.)
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A pagination token, indicating that you want to retrieve the next page of results. If you received a value for NextToken in the response from a previous ListLedgers call, then you should use that value as input here.
source§impl ListLedgersInput
impl ListLedgersInput
sourcepub fn builder() -> ListLedgersInputBuilder
pub fn builder() -> ListLedgersInputBuilder
Creates a new builder-style object to manufacture ListLedgersInput.
Trait Implementations§
source§impl Clone for ListLedgersInput
impl Clone for ListLedgersInput
source§fn clone(&self) -> ListLedgersInput
fn clone(&self) -> ListLedgersInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListLedgersInput
impl Debug for ListLedgersInput
source§impl PartialEq for ListLedgersInput
impl PartialEq for ListLedgersInput
source§fn eq(&self, other: &ListLedgersInput) -> bool
fn eq(&self, other: &ListLedgersInput) -> bool
self and other values to be equal, and is used
by ==.