/// <summary>
        /// Initiates the asynchronous execution of the DescribeFinding operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the DescribeFinding 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<DescribeFindingResponse> DescribeFindingAsync(DescribeFindingRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new DescribeFindingRequestMarshaller();
            var unmarshaller = DescribeFindingResponseUnmarshaller.Instance;

            return InvokeAsync<DescribeFindingRequest,DescribeFindingResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
 /// <summary>
 /// Describes the finding specified by the finding ARN.
 /// </summary>
 /// <param name="findingArn">The ARN specifying the finding 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 DescribeFinding 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<DescribeFindingResponse> DescribeFindingAsync(string findingArn, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new DescribeFindingRequest();
     request.FindingArn = findingArn;
     return DescribeFindingAsync(request, cancellationToken);
 }
        /// <summary>
        /// Initiates the asynchronous execution of the DescribeFinding operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the DescribeFinding 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 EndDescribeFinding
        ///         operation.</returns>
        public IAsyncResult BeginDescribeFinding(DescribeFindingRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new DescribeFindingRequestMarshaller();
            var unmarshaller = DescribeFindingResponseUnmarshaller.Instance;

            return BeginInvoke<DescribeFindingRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
        internal DescribeFindingResponse DescribeFinding(DescribeFindingRequest request)
        {
            var marshaller = new DescribeFindingRequestMarshaller();
            var unmarshaller = DescribeFindingResponseUnmarshaller.Instance;

            return Invoke<DescribeFindingRequest,DescribeFindingResponse>(request, marshaller, unmarshaller);
        }
 /// <summary>
 /// Describes the finding specified by the finding ARN.
 /// </summary>
 /// <param name="findingArn">The ARN specifying the finding that you want to describe.</param>
 /// 
 /// <returns>The response from the DescribeFinding 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 DescribeFindingResponse DescribeFinding(string findingArn)
 {
     var request = new DescribeFindingRequest();
     request.FindingArn = findingArn;
     return DescribeFinding(request);
 }