pub struct ListStateMachinesInput {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§max_results: Option<i64>
The maximum number of results that are returned per call. You can use nextToken
to obtain further pages of results. The default is 100 and the maximum allowed page size is 1000. A value of 0 uses the default.
This is only an upper limit. The actual number of results returned per call might be fewer than the specified maximum.
next_token: Option<String>
If nextToken
is returned, there are more results available. The value of nextToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
Trait Implementations§
Source§impl Clone for ListStateMachinesInput
impl Clone for ListStateMachinesInput
Source§fn clone(&self) -> ListStateMachinesInput
fn clone(&self) -> ListStateMachinesInput
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 ListStateMachinesInput
impl Debug for ListStateMachinesInput
Source§impl Default for ListStateMachinesInput
impl Default for ListStateMachinesInput
Source§fn default() -> ListStateMachinesInput
fn default() -> ListStateMachinesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListStateMachinesInput
impl PartialEq for ListStateMachinesInput
Source§impl Serialize for ListStateMachinesInput
impl Serialize for ListStateMachinesInput
impl StructuralPartialEq for ListStateMachinesInput
Auto Trait Implementations§
impl Freeze for ListStateMachinesInput
impl RefUnwindSafe for ListStateMachinesInput
impl Send for ListStateMachinesInput
impl Sync for ListStateMachinesInput
impl Unpin for ListStateMachinesInput
impl UnwindSafe for ListStateMachinesInput
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