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

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

Returns information about a job. Only used for custom 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 specified job was specified in an invalid format or cannot be found. /// /// The validation was specified in an invalid format. ///
public GetJobDetailsAsync ( string jobId, System cancellationToken = default(CancellationToken) ) : Task
jobId string The unique system-generated ID for the job.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetJobDetailsResponse> GetJobDetailsAsync(string jobId, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetJobDetailsRequest();
            request.JobId = jobId;
            return GetJobDetailsAsync(request, cancellationToken);
        }

Same methods

AmazonCodePipelineClient::GetJobDetailsAsync ( GetJobDetailsRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonCodePipelineClient