pub struct ListRestoreJobsInput {
pub by_account_id: Option<String>,
pub by_created_after: Option<f64>,
pub by_created_before: Option<f64>,
pub by_status: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§by_account_id: Option<String>The account ID to list the jobs from. Returns only restore jobs associated with the specified account ID.
by_created_after: Option<f64>Returns only restore jobs that were created after the specified date.
by_created_before: Option<f64>Returns only restore jobs that were created before the specified date.
by_status: Option<String>Returns only restore jobs associated with the specified job status.
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 ListRestoreJobsInput
impl Clone for ListRestoreJobsInput
Source§fn clone(&self) -> ListRestoreJobsInput
fn clone(&self) -> ListRestoreJobsInput
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 ListRestoreJobsInput
impl Debug for ListRestoreJobsInput
Source§impl Default for ListRestoreJobsInput
impl Default for ListRestoreJobsInput
Source§fn default() -> ListRestoreJobsInput
fn default() -> ListRestoreJobsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListRestoreJobsInput
impl PartialEq for ListRestoreJobsInput
Source§impl Serialize for ListRestoreJobsInput
impl Serialize for ListRestoreJobsInput
impl StructuralPartialEq for ListRestoreJobsInput
Auto Trait Implementations§
impl Freeze for ListRestoreJobsInput
impl RefUnwindSafe for ListRestoreJobsInput
impl Send for ListRestoreJobsInput
impl Sync for ListRestoreJobsInput
impl Unpin for ListRestoreJobsInput
impl UnwindSafe for ListRestoreJobsInput
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