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

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

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 AcknowledgeThirdPartyJobAsync ( string clientToken, string jobId, string nonce, System cancellationToken = default(CancellationToken) ) : Task
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.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<AcknowledgeThirdPartyJobResponse> AcknowledgeThirdPartyJobAsync(string clientToken, string jobId, string nonce, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new AcknowledgeThirdPartyJobRequest();
            request.ClientToken = clientToken;
            request.JobId = jobId;
            request.Nonce = nonce;
            return AcknowledgeThirdPartyJobAsync(request, cancellationToken);
        }

Same methods

AmazonCodePipelineClient::AcknowledgeThirdPartyJobAsync ( AcknowledgeThirdPartyJobRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonCodePipelineClient