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. Note that the previous job definition will be completely overwritten by this information.

Fields

The number of AWS Glue data processing units (DPUs) to allocate to this Job. From 2 to 100 DPUs can be allocated; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the AWS Glue pricing page.

The JobCommand that executes this job (required).

The connections used for this job.

The default arguments for this job.

You can specify arguments here that your own job-execution script consumes, as well as arguments that AWS Glue itself consumes.

For information about how to specify and consume your own Job arguments, see the Calling AWS Glue APIs in Python topic in the developer guide.

For information about the key-value pairs that AWS Glue consumes to set up your job, see the Special Parameters Used by AWS Glue topic in the developer guide.

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 name of the IAM role associated with this job (required).

Trait Implementations

impl Default for JobUpdate
[src]

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

impl Debug for JobUpdate
[src]

Formats the value using the given formatter. Read more

impl Clone for JobUpdate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for JobUpdate
[src]

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 Send for JobUpdate

impl Sync for JobUpdate