pub struct ListActivitiesInput {
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 ListActivitiesInput
impl Clone for ListActivitiesInput
Source§fn clone(&self) -> ListActivitiesInput
fn clone(&self) -> ListActivitiesInput
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 ListActivitiesInput
impl Debug for ListActivitiesInput
Source§impl Default for ListActivitiesInput
impl Default for ListActivitiesInput
Source§fn default() -> ListActivitiesInput
fn default() -> ListActivitiesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListActivitiesInput
impl PartialEq for ListActivitiesInput
Source§impl Serialize for ListActivitiesInput
impl Serialize for ListActivitiesInput
impl StructuralPartialEq for ListActivitiesInput
Auto Trait Implementations§
impl Freeze for ListActivitiesInput
impl RefUnwindSafe for ListActivitiesInput
impl Send for ListActivitiesInput
impl Sync for ListActivitiesInput
impl Unpin for ListActivitiesInput
impl UnwindSafe for ListActivitiesInput
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