/// <summary>
 /// Lists the agents of the assessment specified by the assessment ARN.
 /// </summary>
 /// <param name="assessmentArn">The ARN specifying the assessment whose agents 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 ListAssessmentAgents 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<ListAssessmentAgentsResponse> ListAssessmentAgentsAsync(string assessmentArn, AgentsFilter filter, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new ListAssessmentAgentsRequest();
     request.AssessmentArn = assessmentArn;
     request.Filter = filter;
     return ListAssessmentAgentsAsync(request, cancellationToken);
 }
 /// <summary>
 /// Lists the agents of the assessment specified by the assessment ARN.
 /// </summary>
 /// <param name="assessmentArn">The ARN specifying the assessment whose agents 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 ListAssessmentAgents 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 ListAssessmentAgentsResponse ListAssessmentAgents(string assessmentArn, AgentsFilter filter)
 {
     var request = new ListAssessmentAgentsRequest();
     request.AssessmentArn = assessmentArn;
     request.Filter = filter;
     return ListAssessmentAgents(request);
 }