// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package emr import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) // This input identifies a cluster and a list of tags to remove. type RemoveTagsInput struct { _ struct{} `type:"structure"` // The Amazon EMR resource identifier from which tags will be removed. This // value must be a cluster identifier. // // ResourceId is a required field ResourceId *string `type:"string" required:"true"` // A list of tag keys to remove from a resource. // // TagKeys is a required field TagKeys []string `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.ResourceId == nil { invalidParams.Add(aws.NewErrParamRequired("ResourceId")) } if s.TagKeys == nil { invalidParams.Add(aws.NewErrParamRequired("TagKeys")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // This output indicates the result of removing tags from a resource. 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 // Amazon Elastic MapReduce. // // Removes tags from an Amazon EMR resource. Tags make it easier to associate // clusters in various ways, such as grouping clusters to track your Amazon // EMR resource allocation costs. For more information, see Tag Clusters (https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-plan-tags.html). // // The following example removes the stack tag with value Prod from a cluster: // // // 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/elasticmapreduce-2009-03-31/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 }