Struct rusoto_codepipeline::AcknowledgeThirdPartyJobInput[][src]

pub struct AcknowledgeThirdPartyJobInput {
    pub client_token: String,
    pub job_id: String,
    pub nonce: String,
}

Represents the input of an AcknowledgeThirdPartyJob action.

Fields

The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.

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. Get this number from the response to a GetThirdPartyJobDetails request.

Trait Implementations

impl Default for AcknowledgeThirdPartyJobInput
[src]

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

impl Debug for AcknowledgeThirdPartyJobInput
[src]

Formats the value using the given formatter. Read more

impl Clone for AcknowledgeThirdPartyJobInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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