/// <summary>
        /// Initiates the asynchronous execution of the DescribeRun operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the DescribeRun operation.</param>
        /// <param name="cancellationToken">
        ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
        /// </param>
        /// <returns>The task object representing the asynchronous operation.</returns>
        public Task<DescribeRunResponse> DescribeRunAsync(DescribeRunRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new DescribeRunRequestMarshaller();
            var unmarshaller = DescribeRunResponseUnmarshaller.Instance;

            return InvokeAsync<DescribeRunRequest,DescribeRunResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
 /// <summary>
 /// Describes the assessment run specified by the run ARN.
 /// </summary>
 /// <param name="runArn">The ARN specifying the assessment run that you want to describe.</param>
 /// <param name="cancellationToken">
 ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
 /// </param>
 /// 
 /// <returns>The response from the DescribeRun service method, as returned by Inspector.</returns>
 /// <exception cref="Amazon.Inspector.Model.AccessDeniedException">
 /// 
 /// </exception>
 /// <exception cref="Amazon.Inspector.Model.InternalException">
 /// 
 /// </exception>
 /// <exception cref="Amazon.Inspector.Model.InvalidInputException">
 /// 
 /// </exception>
 /// <exception cref="Amazon.Inspector.Model.NoSuchEntityException">
 /// 
 /// </exception>
 public Task<DescribeRunResponse> DescribeRunAsync(string runArn, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new DescribeRunRequest();
     request.RunArn = runArn;
     return DescribeRunAsync(request, cancellationToken);
 }
        /// <summary>
        /// Initiates the asynchronous execution of the DescribeRun operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the DescribeRun operation on AmazonInspectorClient.</param>
        /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
        /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
        ///          procedure using the AsyncState property.</param>
        /// 
        /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDescribeRun
        ///         operation.</returns>
        public IAsyncResult BeginDescribeRun(DescribeRunRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new DescribeRunRequestMarshaller();
            var unmarshaller = DescribeRunResponseUnmarshaller.Instance;

            return BeginInvoke<DescribeRunRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
        internal DescribeRunResponse DescribeRun(DescribeRunRequest request)
        {
            var marshaller = new DescribeRunRequestMarshaller();
            var unmarshaller = DescribeRunResponseUnmarshaller.Instance;

            return Invoke<DescribeRunRequest,DescribeRunResponse>(request, marshaller, unmarshaller);
        }
 /// <summary>
 /// Describes the assessment run specified by the run ARN.
 /// </summary>
 /// <param name="runArn">The ARN specifying the assessment run that you want to describe.</param>
 /// 
 /// <returns>The response from the DescribeRun service method, as returned by Inspector.</returns>
 /// <exception cref="Amazon.Inspector.Model.AccessDeniedException">
 /// 
 /// </exception>
 /// <exception cref="Amazon.Inspector.Model.InternalException">
 /// 
 /// </exception>
 /// <exception cref="Amazon.Inspector.Model.InvalidInputException">
 /// 
 /// </exception>
 /// <exception cref="Amazon.Inspector.Model.NoSuchEntityException">
 /// 
 /// </exception>
 public DescribeRunResponse DescribeRun(string runArn)
 {
     var request = new DescribeRunRequest();
     request.RunArn = runArn;
     return DescribeRun(request);
 }