Struct rusoto_codepipeline::Job[][src]

pub struct Job {
    pub account_id: Option<String>,
    pub data: Option<JobData>,
    pub id: Option<String>,
    pub nonce: Option<String>,
}

Represents information about a job.

Fields

The ID of the AWS account to use when performing the job.

Additional data about a job.

The unique system-generated ID of the job.

A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. Use this number in an AcknowledgeJob request.

Trait Implementations

impl Default for Job
[src]

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

impl Debug for Job
[src]

Formats the value using the given formatter. Read more

impl Clone for Job
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Job
[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 Job

impl Sync for Job