Struct rusoto_codepipeline::PutThirdPartyJobFailureResultInput[][src]

pub struct PutThirdPartyJobFailureResultInput {
    pub client_token: String,
    pub failure_details: FailureDetails,
    pub job_id: String,
}

Represents the input of a PutThirdPartyJobFailureResult 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.

Represents information about failure details.

The ID of the job that failed. This is the same ID returned from PollForThirdPartyJobs.

Trait Implementations

impl Default for PutThirdPartyJobFailureResultInput
[src]

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

impl Debug for PutThirdPartyJobFailureResultInput
[src]

Formats the value using the given formatter. Read more

impl Clone for PutThirdPartyJobFailureResultInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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