// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package waf import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type ListByteMatchSetsInput struct { _ struct{} `type:"structure"` // Specifies the number of ByteMatchSet objects that you want AWS WAF to return // for this request. If you have more ByteMatchSets objects than the number // you specify for Limit, the response includes a NextMarker value that you // can use to get another batch of ByteMatchSet objects. Limit *int64 `type:"integer"` // If you specify a value for Limit and you have more ByteMatchSets than the // value of Limit, AWS WAF returns a NextMarker value in the response that allows // you to list another group of ByteMatchSets. For the second and subsequent // ListByteMatchSets requests, specify the value of NextMarker from the previous // response to get information about another batch of ByteMatchSets. NextMarker *string `min:"1" type:"string"` } // String returns the string representation func (s ListByteMatchSetsInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *ListByteMatchSetsInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "ListByteMatchSetsInput"} if s.NextMarker != nil && len(*s.NextMarker) < 1 { invalidParams.Add(aws.NewErrParamMinLen("NextMarker", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } type ListByteMatchSetsOutput struct { _ struct{} `type:"structure"` // An array of ByteMatchSetSummary objects. ByteMatchSets []ByteMatchSetSummary `type:"list"` // If you have more ByteMatchSet objects than the number that you specified // for Limit in the request, the response includes a NextMarker value. To list // more ByteMatchSet objects, submit another ListByteMatchSets request, and // specify the NextMarker value from the response in the NextMarker value in // the next request. NextMarker *string `min:"1" type:"string"` } // String returns the string representation func (s ListByteMatchSetsOutput) String() string { return awsutil.Prettify(s) } const opListByteMatchSets = "ListByteMatchSets" // ListByteMatchSetsRequest returns a request value for making API operation for // AWS WAF. // // // This is AWS WAF Classic documentation. For more information, see AWS WAF // Classic (https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html) // in the developer guide. // // For the latest version of AWS WAF, use the AWS WAFV2 API and see the AWS // WAF Developer Guide (https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html). // With the latest version, AWS WAF has a single set of endpoints for regional // and global use. // // Returns an array of ByteMatchSetSummary objects. // // // Example sending a request using ListByteMatchSetsRequest. // req := client.ListByteMatchSetsRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/waf-2015-08-24/ListByteMatchSets func (c *Client) ListByteMatchSetsRequest(input *ListByteMatchSetsInput) ListByteMatchSetsRequest { op := &aws.Operation{ Name: opListByteMatchSets, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &ListByteMatchSetsInput{} } req := c.newRequest(op, input, &ListByteMatchSetsOutput{}) return ListByteMatchSetsRequest{Request: req, Input: input, Copy: c.ListByteMatchSetsRequest} } // ListByteMatchSetsRequest is the request type for the // ListByteMatchSets API operation. type ListByteMatchSetsRequest struct { *aws.Request Input *ListByteMatchSetsInput Copy func(*ListByteMatchSetsInput) ListByteMatchSetsRequest } // Send marshals and sends the ListByteMatchSets API request. func (r ListByteMatchSetsRequest) Send(ctx context.Context) (*ListByteMatchSetsResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &ListByteMatchSetsResponse{ ListByteMatchSetsOutput: r.Request.Data.(*ListByteMatchSetsOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // ListByteMatchSetsResponse is the response type for the // ListByteMatchSets API operation. type ListByteMatchSetsResponse struct { *ListByteMatchSetsOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // ListByteMatchSets request. func (r *ListByteMatchSetsResponse) SDKResponseMetdata() *aws.Response { return r.response }