// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package inspector import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type ListFindingsInput struct { _ struct{} `type:"structure"` // The ARNs of the assessment runs that generate the findings that you want // to list. AssessmentRunArns []string `locationName:"assessmentRunArns" type:"list"` // 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. Filter *FindingFilter `locationName:"filter" type:"structure"` // You can use this parameter to indicate the maximum number of items you want // in the response. The default value is 10. The maximum value is 500. MaxResults *int64 `locationName:"maxResults" type:"integer"` // You can use this parameter when paginating results. Set the value of this // parameter to null on your first call to the ListFindings action. Subsequent // calls to the action fill nextToken in the request with the value of NextToken // from the previous response to continue listing data. NextToken *string `locationName:"nextToken" min:"1" type:"string"` } // String returns the string representation func (s ListFindingsInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *ListFindingsInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "ListFindingsInput"} if s.NextToken != nil && len(*s.NextToken) < 1 { invalidParams.Add(aws.NewErrParamMinLen("NextToken", 1)) } if s.Filter != nil { if err := s.Filter.Validate(); err != nil { invalidParams.AddNested("Filter", err.(aws.ErrInvalidParams)) } } if invalidParams.Len() > 0 { return invalidParams } return nil } type ListFindingsOutput struct { _ struct{} `type:"structure"` // A list of ARNs that specifies the findings returned by the action. // // FindingArns is a required field FindingArns []string `locationName:"findingArns" type:"list" required:"true"` // When a response is generated, if there is more data to be listed, this parameter // is present in the response and contains the value to use for the nextToken // parameter in a subsequent pagination request. If there is no more data to // be listed, this parameter is set to null. NextToken *string `locationName:"nextToken" min:"1" type:"string"` } // String returns the string representation func (s ListFindingsOutput) String() string { return awsutil.Prettify(s) } const opListFindings = "ListFindings" // ListFindingsRequest returns a request value for making API operation for // Amazon Inspector. // // Lists findings that are generated by the assessment runs that are specified // by the ARNs of the assessment runs. // // // Example sending a request using ListFindingsRequest. // req := client.ListFindingsRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/inspector-2016-02-16/ListFindings func (c *Client) ListFindingsRequest(input *ListFindingsInput) ListFindingsRequest { op := &aws.Operation{ Name: opListFindings, HTTPMethod: "POST", HTTPPath: "/", Paginator: &aws.Paginator{ InputTokens: []string{"nextToken"}, OutputTokens: []string{"nextToken"}, LimitToken: "maxResults", TruncationToken: "", }, } if input == nil { input = &ListFindingsInput{} } req := c.newRequest(op, input, &ListFindingsOutput{}) return ListFindingsRequest{Request: req, Input: input, Copy: c.ListFindingsRequest} } // ListFindingsRequest is the request type for the // ListFindings API operation. type ListFindingsRequest struct { *aws.Request Input *ListFindingsInput Copy func(*ListFindingsInput) ListFindingsRequest } // Send marshals and sends the ListFindings API request. func (r ListFindingsRequest) Send(ctx context.Context) (*ListFindingsResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &ListFindingsResponse{ ListFindingsOutput: r.Request.Data.(*ListFindingsOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // NewListFindingsRequestPaginator returns a paginator for ListFindings. // Use Next method to get the next page, and CurrentPage to get the current // response page from the paginator. Next will return false, if there are // no more pages, or an error was encountered. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over pages. // req := client.ListFindingsRequest(input) // p := inspector.NewListFindingsRequestPaginator(req) // // for p.Next(context.TODO()) { // page := p.CurrentPage() // } // // if err := p.Err(); err != nil { // return err // } // func NewListFindingsPaginator(req ListFindingsRequest) ListFindingsPaginator { return ListFindingsPaginator{ Pager: aws.Pager{ NewRequest: func(ctx context.Context) (*aws.Request, error) { var inCpy *ListFindingsInput if req.Input != nil { tmp := *req.Input inCpy = &tmp } newReq := req.Copy(inCpy) newReq.SetContext(ctx) return newReq.Request, nil }, }, } } // ListFindingsPaginator is used to paginate the request. This can be done by // calling Next and CurrentPage. type ListFindingsPaginator struct { aws.Pager } func (p *ListFindingsPaginator) CurrentPage() *ListFindingsOutput { return p.Pager.CurrentPage().(*ListFindingsOutput) } // ListFindingsResponse is the response type for the // ListFindings API operation. type ListFindingsResponse struct { *ListFindingsOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // ListFindings request. func (r *ListFindingsResponse) SDKResponseMetdata() *aws.Response { return r.response }