Struct aws_sdk_s3control::model::JobListDescriptor [−][src]
#[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
The user-specified description that was included in the specified job's Create Job
request.
The operation that the specified job is configured to run on every object listed in the manifest.
A timestamp indicating when the specified job was created.
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.
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.
Creates a new builder-style object to manufacture JobListDescriptor
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more