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

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

Requests the details of a job for a third party action. Only used for partner actions.

When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts. Additionally, this API returns any secret values defined for the action.

/// The client token was specified in an invalid format /// /// The specified job was specified in an invalid format or cannot be found. /// /// The specified job was specified in an invalid format or cannot be found. /// /// The validation was specified in an invalid format. ///
public GetThirdPartyJobDetailsAsync ( string clientToken, string jobId, 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 used for identifying the job.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetThirdPartyJobDetailsResponse> GetThirdPartyJobDetailsAsync(string clientToken, string jobId, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetThirdPartyJobDetailsRequest();
            request.ClientToken = clientToken;
            request.JobId = jobId;
            return GetThirdPartyJobDetailsAsync(request, cancellationToken);
        }

Same methods

AmazonCodePipelineClient::GetThirdPartyJobDetailsAsync ( GetThirdPartyJobDetailsRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonCodePipelineClient