Amazon.CodePipeline.AmazonCodePipelineClient.AcknowledgeThirdPartyJob C# (CSharp) Метод

AcknowledgeThirdPartyJob() публичный Метод

Confirms a job worker has received the specified job. Only used for partner actions.
/// The client token was specified in an invalid format /// /// The specified nonce was specified in an invalid format. /// /// The specified job was specified in an invalid format or cannot be found. /// /// The validation was specified in an invalid format. ///
public AcknowledgeThirdPartyJob ( string clientToken, string jobId, string nonce ) : Amazon.CodePipeline.Model.AcknowledgeThirdPartyJobResponse
clientToken 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.
jobId string The unique system-generated ID of the job.
nonce string 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.
Результат Amazon.CodePipeline.Model.AcknowledgeThirdPartyJobResponse
        public AcknowledgeThirdPartyJobResponse AcknowledgeThirdPartyJob(string clientToken, string jobId, string nonce)
        {
            var request = new AcknowledgeThirdPartyJobRequest();
            request.ClientToken = clientToken;
            request.JobId = jobId;
            request.Nonce = nonce;
            return AcknowledgeThirdPartyJob(request);
        }

Same methods

AmazonCodePipelineClient::AcknowledgeThirdPartyJob ( AcknowledgeThirdPartyJobRequest request ) : Amazon.CodePipeline.Model.AcknowledgeThirdPartyJobResponse
AmazonCodePipelineClient