// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package elasticloadbalancing import ( "context" "fmt" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) // Contains the parameters for RemoveTags. type RemoveTagsInput struct { _ struct{} `type:"structure"` // The name of the load balancer. You can specify a maximum of one load balancer // name. // // LoadBalancerNames is a required field LoadBalancerNames []string `type:"list" required:"true"` // The list of tag keys to remove. // // Tags is a required field Tags []TagKeyOnly `min:"1" type:"list" required:"true"` } // String returns the string representation func (s RemoveTagsInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *RemoveTagsInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "RemoveTagsInput"} if s.LoadBalancerNames == nil { invalidParams.Add(aws.NewErrParamRequired("LoadBalancerNames")) } if s.Tags == nil { invalidParams.Add(aws.NewErrParamRequired("Tags")) } if s.Tags != nil && len(s.Tags) < 1 { invalidParams.Add(aws.NewErrParamMinLen("Tags", 1)) } if s.Tags != nil { for i, v := range s.Tags { if err := v.Validate(); err != nil { invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Tags", i), err.(aws.ErrInvalidParams)) } } } if invalidParams.Len() > 0 { return invalidParams } return nil } // Contains the output of RemoveTags. type RemoveTagsOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s RemoveTagsOutput) String() string { return awsutil.Prettify(s) } const opRemoveTags = "RemoveTags" // RemoveTagsRequest returns a request value for making API operation for // Elastic Load Balancing. // // Removes one or more tags from the specified load balancer. // // // Example sending a request using RemoveTagsRequest. // req := client.RemoveTagsRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/RemoveTags func (c *Client) RemoveTagsRequest(input *RemoveTagsInput) RemoveTagsRequest { op := &aws.Operation{ Name: opRemoveTags, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &RemoveTagsInput{} } req := c.newRequest(op, input, &RemoveTagsOutput{}) return RemoveTagsRequest{Request: req, Input: input, Copy: c.RemoveTagsRequest} } // RemoveTagsRequest is the request type for the // RemoveTags API operation. type RemoveTagsRequest struct { *aws.Request Input *RemoveTagsInput Copy func(*RemoveTagsInput) RemoveTagsRequest } // Send marshals and sends the RemoveTags API request. func (r RemoveTagsRequest) Send(ctx context.Context) (*RemoveTagsResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &RemoveTagsResponse{ RemoveTagsOutput: r.Request.Data.(*RemoveTagsOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // RemoveTagsResponse is the response type for the // RemoveTags API operation. type RemoveTagsResponse struct { *RemoveTagsOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // RemoveTags request. func (r *RemoveTagsResponse) SDKResponseMetdata() *aws.Response { return r.response }