aws_sdk_codepipeline/client/put_third_party_job_success_result.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`PutThirdPartyJobSuccessResult`](crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`job_id(impl Into<String>)`](crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder::job_id) / [`set_job_id(Option<String>)`](crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder::set_job_id):<br>required: **true**<br><p>The ID of the job that successfully completed. This is the same ID returned from <code>PollForThirdPartyJobs</code>.</p><br>
7 /// - [`client_token(impl Into<String>)`](crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder::set_client_token):<br>required: **true**<br><p>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.</p><br>
8 /// - [`current_revision(CurrentRevision)`](crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder::current_revision) / [`set_current_revision(Option<CurrentRevision>)`](crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder::set_current_revision):<br>required: **false**<br><p>Represents information about a current revision.</p><br>
9 /// - [`continuation_token(impl Into<String>)`](crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder::continuation_token) / [`set_continuation_token(Option<String>)`](crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder::set_continuation_token):<br>required: **false**<br><p>A token generated by a job worker, such as a 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.</p><br>
10 /// - [`execution_details(ExecutionDetails)`](crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder::execution_details) / [`set_execution_details(Option<ExecutionDetails>)`](crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder::set_execution_details):<br>required: **false**<br><p>The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.</p><br>
11 /// - On success, responds with [`PutThirdPartyJobSuccessResultOutput`](crate::operation::put_third_party_job_success_result::PutThirdPartyJobSuccessResultOutput)
12 /// - On failure, responds with [`SdkError<PutThirdPartyJobSuccessResultError>`](crate::operation::put_third_party_job_success_result::PutThirdPartyJobSuccessResultError)
13 pub fn put_third_party_job_success_result(
14 &self,
15 ) -> crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder {
16 crate::operation::put_third_party_job_success_result::builders::PutThirdPartyJobSuccessResultFluentBuilder::new(self.handle.clone())
17 }
18}