Amazon.DeviceFarm.AmazonDeviceFarmClient.GetJobAsync C# (CSharp) Method

GetJobAsync() public method

Gets information about a job.
/// An invalid argument was specified. /// /// A limit was exceeded. /// /// The specified entity was not found. /// /// There was a problem with the service account. ///
public GetJobAsync ( string arn, System cancellationToken = default(CancellationToken) ) : Task
arn string The job's ARN.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
return Task
        public Task<GetJobResponse> GetJobAsync(string arn, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetJobRequest();
            request.Arn = arn;
            return GetJobAsync(request, cancellationToken);
        }

Same methods

AmazonDeviceFarmClient::GetJobAsync ( Amazon.DeviceFarm.Model.GetJobRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonDeviceFarmClient