// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package storagegateway import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) // RemoveTagsFromResourceInput type RemoveTagsFromResourceInput struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) of the resource you want to remove the tags // from. // // ResourceARN is a required field ResourceARN *string `min:"50" type:"string" required:"true"` // The keys of the tags you want to remove from the specified resource. A tag // is composed of a key-value pair. // // TagKeys is a required field TagKeys []string `type:"list" required:"true"` } // String returns the string representation func (s RemoveTagsFromResourceInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *RemoveTagsFromResourceInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "RemoveTagsFromResourceInput"} if s.ResourceARN == nil { invalidParams.Add(aws.NewErrParamRequired("ResourceARN")) } if s.ResourceARN != nil && len(*s.ResourceARN) < 50 { invalidParams.Add(aws.NewErrParamMinLen("ResourceARN", 50)) } if s.TagKeys == nil { invalidParams.Add(aws.NewErrParamRequired("TagKeys")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // RemoveTagsFromResourceOutput type RemoveTagsFromResourceOutput struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) of the resource that the tags were removed // from. ResourceARN *string `min:"50" type:"string"` } // String returns the string representation func (s RemoveTagsFromResourceOutput) String() string { return awsutil.Prettify(s) } const opRemoveTagsFromResource = "RemoveTagsFromResource" // RemoveTagsFromResourceRequest returns a request value for making API operation for // AWS Storage Gateway. // // Removes one or more tags from the specified resource. This operation is supported // in storage gateways of all types. // // // Example sending a request using RemoveTagsFromResourceRequest. // req := client.RemoveTagsFromResourceRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/RemoveTagsFromResource func (c *Client) RemoveTagsFromResourceRequest(input *RemoveTagsFromResourceInput) RemoveTagsFromResourceRequest { op := &aws.Operation{ Name: opRemoveTagsFromResource, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &RemoveTagsFromResourceInput{} } req := c.newRequest(op, input, &RemoveTagsFromResourceOutput{}) return RemoveTagsFromResourceRequest{Request: req, Input: input, Copy: c.RemoveTagsFromResourceRequest} } // RemoveTagsFromResourceRequest is the request type for the // RemoveTagsFromResource API operation. type RemoveTagsFromResourceRequest struct { *aws.Request Input *RemoveTagsFromResourceInput Copy func(*RemoveTagsFromResourceInput) RemoveTagsFromResourceRequest } // Send marshals and sends the RemoveTagsFromResource API request. func (r RemoveTagsFromResourceRequest) Send(ctx context.Context) (*RemoveTagsFromResourceResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &RemoveTagsFromResourceResponse{ RemoveTagsFromResourceOutput: r.Request.Data.(*RemoveTagsFromResourceOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // RemoveTagsFromResourceResponse is the response type for the // RemoveTagsFromResource API operation. type RemoveTagsFromResourceResponse struct { *RemoveTagsFromResourceOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // RemoveTagsFromResource request. func (r *RemoveTagsFromResourceResponse) SDKResponseMetdata() *aws.Response { return r.response }