/// <summary> /// Initiates the asynchronous execution of the RunAssessment operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the RunAssessment 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<RunAssessmentResponse> RunAssessmentAsync(RunAssessmentRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new RunAssessmentRequestMarshaller(); var unmarshaller = RunAssessmentResponseUnmarshaller.Instance; return InvokeAsync<RunAssessmentRequest,RunAssessmentResponse>(request, marshaller, unmarshaller, cancellationToken); }
/// <summary> /// Starts the analysis of the application’s behavior against selected rule packages for /// the assessment specified by the assessment ARN. /// </summary> /// <param name="runName">A name specifying the run of the assessment.</param> /// <param name="assessmentArn">The ARN of the assessment that you want to run.</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 RunAssessment 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<RunAssessmentResponse> RunAssessmentAsync(string runName, string assessmentArn, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var request = new RunAssessmentRequest(); request.RunName = runName; request.AssessmentArn = assessmentArn; return RunAssessmentAsync(request, cancellationToken); }
/// <summary> /// Initiates the asynchronous execution of the RunAssessment operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the RunAssessment 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 EndRunAssessment /// operation.</returns> public IAsyncResult BeginRunAssessment(RunAssessmentRequest request, AsyncCallback callback, object state) { var marshaller = new RunAssessmentRequestMarshaller(); var unmarshaller = RunAssessmentResponseUnmarshaller.Instance; return BeginInvoke<RunAssessmentRequest>(request, marshaller, unmarshaller, callback, state); }
internal RunAssessmentResponse RunAssessment(RunAssessmentRequest request) { var marshaller = new RunAssessmentRequestMarshaller(); var unmarshaller = RunAssessmentResponseUnmarshaller.Instance; return Invoke<RunAssessmentRequest,RunAssessmentResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Starts the analysis of the application’s behavior against selected rule packages for /// the assessment specified by the assessment ARN. /// </summary> /// <param name="runName">A name specifying the run of the assessment.</param> /// <param name="assessmentArn">The ARN of the assessment that you want to run.</param> /// /// <returns>The response from the RunAssessment 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 RunAssessmentResponse RunAssessment(string runName, string assessmentArn) { var request = new RunAssessmentRequest(); request.RunName = runName; request.AssessmentArn = assessmentArn; return RunAssessment(request); }