Struct rusoto_glue::JobUpdate [] [src]

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

Specifies information used to update an existing job.

Fields

The number of capacity units allocated to this job.

The JobCommand that executes this job.

The connections used for this job.

The default parameters for this job.

Description of the job.

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

This field is reserved for future use.

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

The role associated with this job.

Trait Implementations

impl Default for JobUpdate
[src]

[src]

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

impl Debug for JobUpdate
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for JobUpdate
[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 JobUpdate

impl Sync for JobUpdate