#[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_DAY
for daily job count for the prior 14 days. -
SEVEN_DAYS
for the aggregated job count for the prior 7 days. -
FOURTEEN_DAYS
for 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_DAY
for daily job count for the prior 14 days. -
SEVEN_DAYS
for the aggregated job count for the prior 7 days. -
FOURTEEN_DAYS
for 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.