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

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

Returns information about a specified job and whether that job has been received by the job worker. Only used for custom actions.
/// 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 AcknowledgeJob ( string jobId, string nonce ) : Amazon.CodePipeline.Model.AcknowledgeJobResponse
jobId string The unique system-generated ID of the job for which you want to confirm receipt.
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 of the PollForJobs request that returned this job.
Результат Amazon.CodePipeline.Model.AcknowledgeJobResponse
        public AcknowledgeJobResponse AcknowledgeJob(string jobId, string nonce)
        {
            var request = new AcknowledgeJobRequest();
            request.JobId = jobId;
            request.Nonce = nonce;
            return AcknowledgeJob(request);
        }

Same methods

AmazonCodePipelineClient::AcknowledgeJob ( AcknowledgeJobRequest request ) : Amazon.CodePipeline.Model.AcknowledgeJobResponse
AmazonCodePipelineClient