#[non_exhaustive]pub struct PutThirdPartyJobSuccessResultInput { /* private fields */ }
Expand description
Represents the input of a PutThirdPartyJobSuccessResult
action.
Implementations
sourceimpl PutThirdPartyJobSuccessResultInput
impl PutThirdPartyJobSuccessResultInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutThirdPartyJobSuccessResult, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutThirdPartyJobSuccessResult, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<PutThirdPartyJobSuccessResult
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PutThirdPartyJobSuccessResultInput
.
sourceimpl PutThirdPartyJobSuccessResultInput
impl PutThirdPartyJobSuccessResultInput
sourcepub fn job_id(&self) -> Option<&str>
pub fn job_id(&self) -> Option<&str>
The ID of the job that successfully completed. This is the same ID returned from PollForThirdPartyJobs
.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
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.
sourcepub fn current_revision(&self) -> Option<&CurrentRevision>
pub fn current_revision(&self) -> Option<&CurrentRevision>
Represents information about a current revision.
sourcepub fn continuation_token(&self) -> Option<&str>
pub fn continuation_token(&self) -> Option<&str>
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.
sourcepub fn execution_details(&self) -> Option<&ExecutionDetails>
pub fn execution_details(&self) -> Option<&ExecutionDetails>
The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.
Trait Implementations
sourceimpl Clone for PutThirdPartyJobSuccessResultInput
impl Clone for PutThirdPartyJobSuccessResultInput
sourcefn clone(&self) -> PutThirdPartyJobSuccessResultInput
fn clone(&self) -> PutThirdPartyJobSuccessResultInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more