コード例 #1
0
 /// <summary>
 /// Lists the assessments corresponding to applications specified by the applications'
 /// ARNs.
 /// </summary>
 /// <param name="applicationArns">A list of ARNs specifying the applications the assessments of which 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 ListAssessments 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<ListAssessmentsResponse> ListAssessmentsAsync(List<string> applicationArns, AssessmentsFilter filter, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new ListAssessmentsRequest();
     request.ApplicationArns = applicationArns;
     request.Filter = filter;
     return ListAssessmentsAsync(request, cancellationToken);
 }
コード例 #2
0
 /// <summary>
 /// Lists the assessments corresponding to applications specified by the applications'
 /// ARNs.
 /// </summary>
 /// <param name="applicationArns">A list of ARNs specifying the applications the assessments of which 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 ListAssessments 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 ListAssessmentsResponse ListAssessments(List<string> applicationArns, AssessmentsFilter filter)
 {
     var request = new ListAssessmentsRequest();
     request.ApplicationArns = applicationArns;
     request.Filter = filter;
     return ListAssessments(request);
 }