Struct rusoto_codepipeline::AcknowledgeJobInput[][src]

pub struct AcknowledgeJobInput {
    pub job_id: String,
    pub nonce: String,
}

Represents the input of an AcknowledgeJob action.

Fields

The unique system-generated ID of the job for which you want to confirm receipt.

A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. Get this number from the response of the PollForJobs request that returned this job.

Trait Implementations

impl Default for AcknowledgeJobInput
[src]

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

impl Debug for AcknowledgeJobInput
[src]

Formats the value using the given formatter. Read more

impl Clone for AcknowledgeJobInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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