// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package dynamodb import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" "github.com/aws/aws-sdk-go-v2/private/protocol" "github.com/aws/aws-sdk-go-v2/private/protocol/jsonrpc" ) type UntagResourceInput struct { _ struct{} `type:"structure"` // The DynamoDB resource that the tags will be removed from. This value is an // Amazon Resource Name (ARN). // // ResourceArn is a required field ResourceArn *string `min:"1" type:"string" required:"true"` // A list of tag keys. Existing tags of the resource whose keys are members // of this list will be removed from the DynamoDB resource. // // TagKeys is a required field TagKeys []string `type:"list" required:"true"` } // String returns the string representation func (s UntagResourceInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *UntagResourceInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "UntagResourceInput"} if s.ResourceArn == nil { invalidParams.Add(aws.NewErrParamRequired("ResourceArn")) } if s.ResourceArn != nil && len(*s.ResourceArn) < 1 { invalidParams.Add(aws.NewErrParamMinLen("ResourceArn", 1)) } if s.TagKeys == nil { invalidParams.Add(aws.NewErrParamRequired("TagKeys")) } if invalidParams.Len() > 0 { return invalidParams } return nil } type UntagResourceOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s UntagResourceOutput) String() string { return awsutil.Prettify(s) } const opUntagResource = "UntagResource" // UntagResourceRequest returns a request value for making API operation for // Amazon DynamoDB. // // Removes the association of tags from an Amazon DynamoDB resource. You can // call UntagResource up to five times per second, per account. // // For an overview on tagging DynamoDB resources, see Tagging for DynamoDB (https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html) // in the Amazon DynamoDB Developer Guide. // // // Example sending a request using UntagResourceRequest. // req := client.UntagResourceRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/UntagResource func (c *Client) UntagResourceRequest(input *UntagResourceInput) UntagResourceRequest { op := &aws.Operation{ Name: opUntagResource, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &UntagResourceInput{} } req := c.newRequest(op, input, &UntagResourceOutput{}) req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) if req.Config.EnableEndpointDiscovery { de := discovererDescribeEndpoints{ Client: c, Required: false, EndpointCache: c.endpointCache, Params: map[string]*string{ "op": &req.Operation.Name, }, } for k, v := range de.Params { if v == nil { delete(de.Params, k) } } req.Handlers.Build.PushFrontNamed(aws.NamedHandler{ Name: "crr.endpointdiscovery", Fn: de.Handler, }) } return UntagResourceRequest{Request: req, Input: input, Copy: c.UntagResourceRequest} } // UntagResourceRequest is the request type for the // UntagResource API operation. type UntagResourceRequest struct { *aws.Request Input *UntagResourceInput Copy func(*UntagResourceInput) UntagResourceRequest } // Send marshals and sends the UntagResource API request. func (r UntagResourceRequest) Send(ctx context.Context) (*UntagResourceResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &UntagResourceResponse{ UntagResourceOutput: r.Request.Data.(*UntagResourceOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // UntagResourceResponse is the response type for the // UntagResource API operation. type UntagResourceResponse struct { *UntagResourceOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // UntagResource request. func (r *UntagResourceResponse) SDKResponseMetdata() *aws.Response { return r.response }