Struct aws_sdk_s3control::model::JobListDescriptor
source · [−]#[non_exhaustive]pub struct JobListDescriptor {
pub job_id: Option<String>,
pub description: Option<String>,
pub operation: Option<OperationName>,
pub priority: i32,
pub status: Option<JobStatus>,
pub creation_time: Option<DateTime>,
pub termination_date: Option<DateTime>,
pub progress_summary: Option<JobProgressSummary>,
}
Expand description
Contains the configuration and status information for a single job retrieved as part of a job list.
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.job_id: Option<String>
The ID for the specified job.
description: Option<String>
The user-specified description that was included in the specified job's Create Job
request.
operation: Option<OperationName>
The operation that the specified job is configured to run on every object listed in the manifest.
priority: i32
The current priority for the specified job.
status: Option<JobStatus>
The specified job's current status.
creation_time: Option<DateTime>
A timestamp indicating when the specified job was created.
termination_date: Option<DateTime>
A timestamp indicating when the specified job terminated. A job's termination date is the date and time when it succeeded, failed, or was canceled.
progress_summary: Option<JobProgressSummary>
Describes the total number of tasks that the specified job has run, the number of tasks that succeeded, and the number of tasks that failed.
Implementations
sourceimpl JobListDescriptor
impl JobListDescriptor
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The user-specified description that was included in the specified job's Create Job
request.
sourcepub fn operation(&self) -> Option<&OperationName>
pub fn operation(&self) -> Option<&OperationName>
The operation that the specified job is configured to run on every object listed in the manifest.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
A timestamp indicating when the specified job was created.
sourcepub fn termination_date(&self) -> Option<&DateTime>
pub fn termination_date(&self) -> Option<&DateTime>
A timestamp indicating when the specified job terminated. A job's termination date is the date and time when it succeeded, failed, or was canceled.
sourcepub fn progress_summary(&self) -> Option<&JobProgressSummary>
pub fn progress_summary(&self) -> Option<&JobProgressSummary>
Describes the total number of tasks that the specified job has run, the number of tasks that succeeded, and the number of tasks that failed.
sourceimpl JobListDescriptor
impl JobListDescriptor
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture JobListDescriptor
Trait Implementations
sourceimpl Clone for JobListDescriptor
impl Clone for JobListDescriptor
sourcefn clone(&self) -> JobListDescriptor
fn clone(&self) -> JobListDescriptor
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for JobListDescriptor
impl Debug for JobListDescriptor
sourceimpl PartialEq<JobListDescriptor> for JobListDescriptor
impl PartialEq<JobListDescriptor> for JobListDescriptor
sourcefn eq(&self, other: &JobListDescriptor) -> bool
fn eq(&self, other: &JobListDescriptor) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &JobListDescriptor) -> bool
fn ne(&self, other: &JobListDescriptor) -> bool
This method tests for !=
.
impl StructuralPartialEq for JobListDescriptor
Auto Trait Implementations
impl RefUnwindSafe for JobListDescriptor
impl Send for JobListDescriptor
impl Sync for JobListDescriptor
impl Unpin for JobListDescriptor
impl UnwindSafe for JobListDescriptor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more