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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 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

The ID for the specified job.

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 Amazon Resource Name (ARN) for this job.

The current status of the specified job.

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.

The priority of the specified job.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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