// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package wafregional import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type CreateRegexMatchSetInput struct { _ struct{} `type:"structure"` // The value returned by the most recent call to GetChangeToken. // // ChangeToken is a required field ChangeToken *string `min:"1" type:"string" required:"true"` // A friendly name or description of the RegexMatchSet. You can't change Name // after you create a RegexMatchSet. // // Name is a required field Name *string `min:"1" type:"string" required:"true"` } // String returns the string representation func (s CreateRegexMatchSetInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *CreateRegexMatchSetInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "CreateRegexMatchSetInput"} if s.ChangeToken == nil { invalidParams.Add(aws.NewErrParamRequired("ChangeToken")) } if s.ChangeToken != nil && len(*s.ChangeToken) < 1 { invalidParams.Add(aws.NewErrParamMinLen("ChangeToken", 1)) } if s.Name == nil { invalidParams.Add(aws.NewErrParamRequired("Name")) } if s.Name != nil && len(*s.Name) < 1 { invalidParams.Add(aws.NewErrParamMinLen("Name", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } type CreateRegexMatchSetOutput struct { _ struct{} `type:"structure"` // The ChangeToken that you used to submit the CreateRegexMatchSet request. // You can also use this value to query the status of the request. For more // information, see GetChangeTokenStatus. ChangeToken *string `min:"1" type:"string"` // A RegexMatchSet that contains no RegexMatchTuple objects. RegexMatchSet *RegexMatchSet `type:"structure"` } // String returns the string representation func (s CreateRegexMatchSetOutput) String() string { return awsutil.Prettify(s) } const opCreateRegexMatchSet = "CreateRegexMatchSet" // CreateRegexMatchSetRequest returns a request value for making API operation for // AWS WAF Regional. // // // 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. // // Creates a RegexMatchSet. You then use UpdateRegexMatchSet to identify the // part of a web request that you want AWS WAF to inspect, such as the values // of the User-Agent header or the query string. For example, you can create // a RegexMatchSet that contains a RegexMatchTuple that looks for any requests // with User-Agent headers that match a RegexPatternSet with pattern B[a@]dB[o0]t. // You can then configure AWS WAF to reject those requests. // // To create and configure a RegexMatchSet, perform the following steps: // // Use GetChangeToken to get the change token that you provide in the ChangeToken // parameter of a CreateRegexMatchSet request. // // Submit a CreateRegexMatchSet request. // // Use GetChangeToken to get the change token that you provide in the ChangeToken // parameter of an UpdateRegexMatchSet request. // // Submit an UpdateRegexMatchSet request to specify the part of the request // that you want AWS WAF to inspect (for example, the header or the URI) and // the value, using a RegexPatternSet, that you want AWS WAF to watch for. // // For more information about how to use the AWS WAF API to allow or block HTTP // requests, see the AWS WAF Developer Guide (https://docs.aws.amazon.com/waf/latest/developerguide/). // // // Example sending a request using CreateRegexMatchSetRequest. // req := client.CreateRegexMatchSetRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/waf-regional-2016-11-28/CreateRegexMatchSet func (c *Client) CreateRegexMatchSetRequest(input *CreateRegexMatchSetInput) CreateRegexMatchSetRequest { op := &aws.Operation{ Name: opCreateRegexMatchSet, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &CreateRegexMatchSetInput{} } req := c.newRequest(op, input, &CreateRegexMatchSetOutput{}) return CreateRegexMatchSetRequest{Request: req, Input: input, Copy: c.CreateRegexMatchSetRequest} } // CreateRegexMatchSetRequest is the request type for the // CreateRegexMatchSet API operation. type CreateRegexMatchSetRequest struct { *aws.Request Input *CreateRegexMatchSetInput Copy func(*CreateRegexMatchSetInput) CreateRegexMatchSetRequest } // Send marshals and sends the CreateRegexMatchSet API request. func (r CreateRegexMatchSetRequest) Send(ctx context.Context) (*CreateRegexMatchSetResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &CreateRegexMatchSetResponse{ CreateRegexMatchSetOutput: r.Request.Data.(*CreateRegexMatchSetOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // CreateRegexMatchSetResponse is the response type for the // CreateRegexMatchSet API operation. type CreateRegexMatchSetResponse struct { *CreateRegexMatchSetOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // CreateRegexMatchSet request. func (r *CreateRegexMatchSetResponse) SDKResponseMetdata() *aws.Response { return r.response }