pub struct PutThirdPartyJobSuccessResultInput {
pub client_token: String,
pub continuation_token: Option<String>,
pub current_revision: Option<CurrentRevision>,
pub execution_details: Option<ExecutionDetails>,
pub job_id: String,
}
Expand description
Represents the input of a PutThirdPartyJobSuccessResult
action.
Fields§
§client_token: String
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.
continuation_token: Option<String>
A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a partner action in progress. Future jobs use this token to identify the running instance of the action. It can be reused to return more information about the progress of the partner action. When the action is complete, no continuation token should be supplied.
current_revision: Option<CurrentRevision>
Represents information about a current revision.
execution_details: Option<ExecutionDetails>
The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.
job_id: String
The ID of the job that successfully completed. This is the same ID returned from PollForThirdPartyJobs
.
Trait Implementations§
Source§impl Clone for PutThirdPartyJobSuccessResultInput
impl Clone for PutThirdPartyJobSuccessResultInput
Source§fn clone(&self) -> PutThirdPartyJobSuccessResultInput
fn clone(&self) -> PutThirdPartyJobSuccessResultInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for PutThirdPartyJobSuccessResultInput
impl Default for PutThirdPartyJobSuccessResultInput
Source§fn default() -> PutThirdPartyJobSuccessResultInput
fn default() -> PutThirdPartyJobSuccessResultInput
Source§impl PartialEq for PutThirdPartyJobSuccessResultInput
impl PartialEq for PutThirdPartyJobSuccessResultInput
Source§fn eq(&self, other: &PutThirdPartyJobSuccessResultInput) -> bool
fn eq(&self, other: &PutThirdPartyJobSuccessResultInput) -> bool
self
and other
values to be equal, and is used by ==
.