#[non_exhaustive]pub struct ListCopyJobSummariesOutput {
pub copy_job_summaries: Option<Vec<CopyJobSummary>>,
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.copy_job_summaries: Option<Vec<CopyJobSummary>>
This return shows 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 ListCopyJobSummariesOutput
impl ListCopyJobSummariesOutput
sourcepub fn copy_job_summaries(&self) -> &[CopyJobSummary]
pub fn copy_job_summaries(&self) -> &[CopyJobSummary]
This return shows 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 .copy_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 ListCopyJobSummariesOutput
impl ListCopyJobSummariesOutput
sourcepub fn builder() -> ListCopyJobSummariesOutputBuilder
pub fn builder() -> ListCopyJobSummariesOutputBuilder
Creates a new builder-style object to manufacture ListCopyJobSummariesOutput
.
Trait Implementations§
source§impl Clone for ListCopyJobSummariesOutput
impl Clone for ListCopyJobSummariesOutput
source§fn clone(&self) -> ListCopyJobSummariesOutput
fn clone(&self) -> ListCopyJobSummariesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListCopyJobSummariesOutput
impl Debug for ListCopyJobSummariesOutput
source§impl PartialEq for ListCopyJobSummariesOutput
impl PartialEq for ListCopyJobSummariesOutput
source§fn eq(&self, other: &ListCopyJobSummariesOutput) -> bool
fn eq(&self, other: &ListCopyJobSummariesOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListCopyJobSummariesOutput
impl RequestId for ListCopyJobSummariesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.