Struct aws_sdk_s3control::model::JobDescriptor [−][src]
#[non_exhaustive]pub struct JobDescriptor {Show 17 fields
pub job_id: Option<String>,
pub confirmation_required: Option<bool>,
pub description: Option<String>,
pub job_arn: Option<String>,
pub status: Option<JobStatus>,
pub manifest: Option<JobManifest>,
pub operation: Option<JobOperation>,
pub priority: i32,
pub progress_summary: Option<JobProgressSummary>,
pub status_update_reason: Option<String>,
pub failure_reasons: Option<Vec<JobFailure>>,
pub report: Option<JobReport>,
pub creation_time: Option<DateTime>,
pub termination_date: Option<DateTime>,
pub role_arn: Option<String>,
pub suspended_date: Option<DateTime>,
pub suspended_cause: Option<String>,
}
Expand description
A container element for the job configuration and status information returned by a Describe Job
request.
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.
confirmation_required: Option<bool>
Indicates whether confirmation is required before Amazon S3 begins running the specified job. Confirmation is required only for jobs created through the Amazon S3 console.
description: Option<String>
The description for this job, if one was provided in this job's Create Job
request.
job_arn: Option<String>
The Amazon Resource Name (ARN) for this job.
status: Option<JobStatus>
The current status of the specified job.
manifest: Option<JobManifest>
The configuration information for the specified job's manifest object.
operation: Option<JobOperation>
The operation that the specified job is configured to run on the objects listed in the manifest.
priority: i32
The priority of the specified job.
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.
status_update_reason: Option<String>
The reason for updating the job.
failure_reasons: Option<Vec<JobFailure>>
If the specified job failed, this field contains information describing the failure.
report: Option<JobReport>
Contains the configuration information for the job-completion report if you requested one in the Create Job
request.
creation_time: Option<DateTime>
A timestamp indicating when this job was created.
termination_date: Option<DateTime>
A timestamp indicating when this job terminated. A job's termination date is the date and time when it succeeded, failed, or was canceled.
role_arn: Option<String>
The Amazon Resource Name (ARN) for the Identity and Access Management (IAM) role assigned to run the tasks for this job.
suspended_date: Option<DateTime>
The timestamp when this job was suspended, if it has been suspended.
suspended_cause: Option<String>
The reason why the specified job was suspended. A job is only suspended if you create it through the Amazon S3 console. When you create the job, it enters
the Suspended
state to await confirmation before running. After you confirm the job, it automatically exits the Suspended
state.
Implementations
Indicates whether confirmation is required before Amazon S3 begins running the specified job. Confirmation is required only for jobs created through the Amazon S3 console.
The description for this job, if one was provided in this job's Create Job
request.
The configuration information for the specified job's manifest object.
The operation that the specified job is configured to run on the objects listed in the manifest.
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.
The reason for updating the job.
If the specified job failed, this field contains information describing the failure.
Contains the configuration information for the job-completion report if you requested one in the Create Job
request.
A timestamp indicating when this job was created.
A timestamp indicating when this job terminated. A job's termination date is the date and time when it succeeded, failed, or was canceled.
The Amazon Resource Name (ARN) for the Identity and Access Management (IAM) role assigned to run the tasks for this job.
The timestamp when this job was suspended, if it has been suspended.
The reason why the specified job was suspended. A job is only suspended if you create it through the Amazon S3 console. When you create the job, it enters
the Suspended
state to await confirmation before running. After you confirm the job, it automatically exits the Suspended
state.
Creates a new builder-style object to manufacture JobDescriptor
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 JobDescriptor
impl Send for JobDescriptor
impl Sync for JobDescriptor
impl Unpin for JobDescriptor
impl UnwindSafe for JobDescriptor
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