pub struct ListBackupPlanVersionsInput {
pub backup_plan_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§backup_plan_id: String
Uniquely identifies a backup plan.
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 ListBackupPlanVersionsInput
impl Clone for ListBackupPlanVersionsInput
Source§fn clone(&self) -> ListBackupPlanVersionsInput
fn clone(&self) -> ListBackupPlanVersionsInput
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 ListBackupPlanVersionsInput
impl Debug for ListBackupPlanVersionsInput
Source§impl Default for ListBackupPlanVersionsInput
impl Default for ListBackupPlanVersionsInput
Source§fn default() -> ListBackupPlanVersionsInput
fn default() -> ListBackupPlanVersionsInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListBackupPlanVersionsInput
Auto Trait Implementations§
impl Freeze for ListBackupPlanVersionsInput
impl RefUnwindSafe for ListBackupPlanVersionsInput
impl Send for ListBackupPlanVersionsInput
impl Sync for ListBackupPlanVersionsInput
impl Unpin for ListBackupPlanVersionsInput
impl UnwindSafe for ListBackupPlanVersionsInput
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