pub struct ListBackupPlansInput {
pub include_deleted: Option<bool>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§include_deleted: Option<bool>
A Boolean value with a default value of FALSE
that returns deleted backup plans when set to TRUE
.
max_results: Option<i64>
The maximum number of items to be returned.
next_token: Option<String>
The next item following a partial list of returned items. For example, if a request is made to return maxResults
number of items, NextToken
allows you to return more items in your list starting at the location pointed to by the next token.
Trait Implementations§
Source§impl Clone for ListBackupPlansInput
impl Clone for ListBackupPlansInput
Source§fn clone(&self) -> ListBackupPlansInput
fn clone(&self) -> ListBackupPlansInput
Returns a duplicate 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 ListBackupPlansInput
impl Debug for ListBackupPlansInput
Source§impl Default for ListBackupPlansInput
impl Default for ListBackupPlansInput
Source§fn default() -> ListBackupPlansInput
fn default() -> ListBackupPlansInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListBackupPlansInput
impl PartialEq for ListBackupPlansInput
Source§impl Serialize for ListBackupPlansInput
impl Serialize for ListBackupPlansInput
impl StructuralPartialEq for ListBackupPlansInput
Auto Trait Implementations§
impl Freeze for ListBackupPlansInput
impl RefUnwindSafe for ListBackupPlansInput
impl Send for ListBackupPlansInput
impl Sync for ListBackupPlansInput
impl Unpin for ListBackupPlansInput
impl UnwindSafe for ListBackupPlansInput
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