// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package sagemaker import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type DeleteTagsInput struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) of the resource whose tags you want to delete. // // ResourceArn is a required field ResourceArn *string `type:"string" required:"true"` // An array or one or more tag keys to delete. // // TagKeys is a required field TagKeys []string `min:"1" type:"list" required:"true"` } // String returns the string representation func (s DeleteTagsInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *DeleteTagsInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "DeleteTagsInput"} if s.ResourceArn == nil { invalidParams.Add(aws.NewErrParamRequired("ResourceArn")) } if s.TagKeys == nil { invalidParams.Add(aws.NewErrParamRequired("TagKeys")) } if s.TagKeys != nil && len(s.TagKeys) < 1 { invalidParams.Add(aws.NewErrParamMinLen("TagKeys", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } type DeleteTagsOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s DeleteTagsOutput) String() string { return awsutil.Prettify(s) } const opDeleteTags = "DeleteTags" // DeleteTagsRequest returns a request value for making API operation for // Amazon SageMaker Service. // // Deletes the specified tags from an Amazon SageMaker resource. // // To list a resource's tags, use the ListTags API. // // When you call this API to delete tags from a hyperparameter tuning job, the // deleted tags are not removed from training jobs that the hyperparameter tuning // job launched before you called this API. // // // Example sending a request using DeleteTagsRequest. // req := client.DeleteTagsRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteTags func (c *Client) DeleteTagsRequest(input *DeleteTagsInput) DeleteTagsRequest { op := &aws.Operation{ Name: opDeleteTags, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &DeleteTagsInput{} } req := c.newRequest(op, input, &DeleteTagsOutput{}) return DeleteTagsRequest{Request: req, Input: input, Copy: c.DeleteTagsRequest} } // DeleteTagsRequest is the request type for the // DeleteTags API operation. type DeleteTagsRequest struct { *aws.Request Input *DeleteTagsInput Copy func(*DeleteTagsInput) DeleteTagsRequest } // Send marshals and sends the DeleteTags API request. func (r DeleteTagsRequest) Send(ctx context.Context) (*DeleteTagsResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &DeleteTagsResponse{ DeleteTagsOutput: r.Request.Data.(*DeleteTagsOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // DeleteTagsResponse is the response type for the // DeleteTags API operation. type DeleteTagsResponse struct { *DeleteTagsOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // DeleteTags request. func (r *DeleteTagsResponse) SDKResponseMetdata() *aws.Response { return r.response }