Struct rusoto_glue::Job [] [src]

pub struct Job {
    pub allocated_capacity: Option<i64>,
    pub command: Option<JobCommand>,
    pub connections: Option<ConnectionsList>,
    pub created_on: Option<f64>,
    pub default_arguments: Option<HashMap<String, String>>,
    pub description: Option<String>,
    pub execution_property: Option<ExecutionProperty>,
    pub last_modified_on: Option<f64>,
    pub log_uri: Option<String>,
    pub max_retries: Option<i64>,
    pub name: Option<String>,
    pub role: Option<String>,
}

Specifies a job in the Data Catalog.

Fields

The number of capacity units allocated to this job.

The JobCommand that executes this job.

The connections used for this job.

The time and date that this job specification was created.

The default parameters for this job.

Description of this job.

An ExecutionProperty specifying the maximum number of concurrent runs allowed for this job.

The last point in time when this job specification was modified.

This field is reserved for future use.

The maximum number of times to retry this job if it fails.

The name you assign to this job.

The role associated with this job.

Trait Implementations

impl Default for Job
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for Job
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Job
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Job

impl Sync for Job