Exemplo n.º 1
0
 /// <summary>
 /// Lists the assessment runs associated with the assessments specified by the assessment
 /// ARNs.
 /// </summary>
 /// <param name="assessmentArns">The ARNs specifying the assessments whose runs you want to list.</param>
 /// <param name="filter">You can use this parameter to specify a subset of data to be included in the action's response. For a record to match a filter, all specified filter attributes must match. When multiple values are specified for a filter attribute, any of the values can match.</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 ListRuns 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<ListRunsResponse> ListRunsAsync(List<string> assessmentArns, RunsFilter filter, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new ListRunsRequest();
     request.AssessmentArns = assessmentArns;
     request.Filter = filter;
     return ListRunsAsync(request, cancellationToken);
 }
 /// <summary>
 /// Lists the assessment runs associated with the assessments specified by the assessment
 /// ARNs.
 /// </summary>
 /// <param name="assessmentArns">The ARNs specifying the assessments whose runs you want to list.</param>
 /// <param name="filter">You can use this parameter to specify a subset of data to be included in the action's response. For a record to match a filter, all specified filter attributes must match. When multiple values are specified for a filter attribute, any of the values can match.</param>
 /// 
 /// <returns>The response from the ListRuns 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 ListRunsResponse ListRuns(List<string> assessmentArns, RunsFilter filter)
 {
     var request = new ListRunsRequest();
     request.AssessmentArns = assessmentArns;
     request.Filter = filter;
     return ListRuns(request);
 }