// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package cloudhsm import ( "context" "fmt" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type AddTagsToResourceInput struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) of the AWS CloudHSM resource to tag. // // ResourceArn is a required field ResourceArn *string `type:"string" required:"true"` // One or more tags. // // TagList is a required field TagList []Tag `type:"list" required:"true"` } // String returns the string representation func (s AddTagsToResourceInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *AddTagsToResourceInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "AddTagsToResourceInput"} if s.ResourceArn == nil { invalidParams.Add(aws.NewErrParamRequired("ResourceArn")) } if s.TagList == nil { invalidParams.Add(aws.NewErrParamRequired("TagList")) } if s.TagList != nil { for i, v := range s.TagList { if err := v.Validate(); err != nil { invalidParams.AddNested(fmt.Sprintf("%s[%v]", "TagList", i), err.(aws.ErrInvalidParams)) } } } if invalidParams.Len() > 0 { return invalidParams } return nil } type AddTagsToResourceOutput struct { _ struct{} `type:"structure"` // The status of the operation. // // Status is a required field Status *string `type:"string" required:"true"` } // String returns the string representation func (s AddTagsToResourceOutput) String() string { return awsutil.Prettify(s) } const opAddTagsToResource = "AddTagsToResource" // AddTagsToResourceRequest returns a request value for making API operation for // Amazon CloudHSM. // // This is documentation for AWS CloudHSM Classic. For more information, see // AWS CloudHSM Classic FAQs (http://aws.amazon.com/cloudhsm/faqs-classic/), // the AWS CloudHSM Classic User Guide (http://docs.aws.amazon.com/cloudhsm/classic/userguide/), // and the AWS CloudHSM Classic API Reference (http://docs.aws.amazon.com/cloudhsm/classic/APIReference/). // // For information about the current version of AWS CloudHSM, see AWS CloudHSM // (http://aws.amazon.com/cloudhsm/), the AWS CloudHSM User Guide (http://docs.aws.amazon.com/cloudhsm/latest/userguide/), // and the AWS CloudHSM API Reference (http://docs.aws.amazon.com/cloudhsm/latest/APIReference/). // // Adds or overwrites one or more tags for the specified AWS CloudHSM resource. // // Each tag consists of a key and a value. Tag keys must be unique to each resource. // // // Example sending a request using AddTagsToResourceRequest. // req := client.AddTagsToResourceRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudhsm-2014-05-30/AddTagsToResource func (c *Client) AddTagsToResourceRequest(input *AddTagsToResourceInput) AddTagsToResourceRequest { op := &aws.Operation{ Name: opAddTagsToResource, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &AddTagsToResourceInput{} } req := c.newRequest(op, input, &AddTagsToResourceOutput{}) return AddTagsToResourceRequest{Request: req, Input: input, Copy: c.AddTagsToResourceRequest} } // AddTagsToResourceRequest is the request type for the // AddTagsToResource API operation. type AddTagsToResourceRequest struct { *aws.Request Input *AddTagsToResourceInput Copy func(*AddTagsToResourceInput) AddTagsToResourceRequest } // Send marshals and sends the AddTagsToResource API request. func (r AddTagsToResourceRequest) Send(ctx context.Context) (*AddTagsToResourceResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &AddTagsToResourceResponse{ AddTagsToResourceOutput: r.Request.Data.(*AddTagsToResourceOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // AddTagsToResourceResponse is the response type for the // AddTagsToResource API operation. type AddTagsToResourceResponse struct { *AddTagsToResourceOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // AddTagsToResource request. func (r *AddTagsToResourceResponse) SDKResponseMetdata() *aws.Response { return r.response }