#[non_exhaustive]pub struct ListBackupJobSummariesOutput {
pub backup_job_summaries: Option<Vec<BackupJobSummary>>,
pub aggregation_period: Option<String>,
pub next_token: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.backup_job_summaries: Option<Vec<BackupJobSummary>>This request returns a summary that contains Region, Account, State, ResourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.
aggregation_period: Option<String>This is the period that sets the boundaries for returned results.
-
ONE_DAYfor daily job count for the prior 14 days. -
SEVEN_DAYSfor the aggregated job count for the prior 7 days. -
FOURTEEN_DAYSfor aggregated job count for prior 14 days.
next_token: Option<String>The next item following a partial list of returned resources. For example, if a request is made to return MaxResults number of resources, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
Implementations§
source§impl ListBackupJobSummariesOutput
impl ListBackupJobSummariesOutput
sourcepub fn backup_job_summaries(&self) -> &[BackupJobSummary]
pub fn backup_job_summaries(&self) -> &[BackupJobSummary]
This request returns a summary that contains Region, Account, State, ResourceType, MessageCategory, StartTime, EndTime, and Count of included jobs.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .backup_job_summaries.is_none().
sourcepub fn aggregation_period(&self) -> Option<&str>
pub fn aggregation_period(&self) -> Option<&str>
This is the period that sets the boundaries for returned results.
-
ONE_DAYfor daily job count for the prior 14 days. -
SEVEN_DAYSfor the aggregated job count for the prior 7 days. -
FOURTEEN_DAYSfor aggregated job count for prior 14 days.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The next item following a partial list of returned resources. For example, if a request is made to return MaxResults number of resources, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
source§impl ListBackupJobSummariesOutput
impl ListBackupJobSummariesOutput
sourcepub fn builder() -> ListBackupJobSummariesOutputBuilder
pub fn builder() -> ListBackupJobSummariesOutputBuilder
Creates a new builder-style object to manufacture ListBackupJobSummariesOutput.
Trait Implementations§
source§impl Clone for ListBackupJobSummariesOutput
impl Clone for ListBackupJobSummariesOutput
source§fn clone(&self) -> ListBackupJobSummariesOutput
fn clone(&self) -> ListBackupJobSummariesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListBackupJobSummariesOutput
impl Debug for ListBackupJobSummariesOutput
source§impl PartialEq for ListBackupJobSummariesOutput
impl PartialEq for ListBackupJobSummariesOutput
source§fn eq(&self, other: &ListBackupJobSummariesOutput) -> bool
fn eq(&self, other: &ListBackupJobSummariesOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for ListBackupJobSummariesOutput
impl RequestId for ListBackupJobSummariesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for ListBackupJobSummariesOutput
Auto Trait Implementations§
impl Freeze for ListBackupJobSummariesOutput
impl RefUnwindSafe for ListBackupJobSummariesOutput
impl Send for ListBackupJobSummariesOutput
impl Sync for ListBackupJobSummariesOutput
impl Unpin for ListBackupJobSummariesOutput
impl UnwindSafe for ListBackupJobSummariesOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more