// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package cloudtrail import ( "context" "fmt" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) // Specifies the tags to add to a trail. type AddTagsInput struct { _ struct{} `type:"structure"` // Specifies the ARN of the trail to which one or more tags will be added. The // format of a trail ARN is: // // arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail // // ResourceId is a required field ResourceId *string `type:"string" required:"true"` // Contains a list of CloudTrail tags, up to a limit of 50 TagsList []Tag `type:"list"` } // String returns the string representation func (s AddTagsInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *AddTagsInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "AddTagsInput"} if s.ResourceId == nil { invalidParams.Add(aws.NewErrParamRequired("ResourceId")) } if s.TagsList != nil { for i, v := range s.TagsList { if err := v.Validate(); err != nil { invalidParams.AddNested(fmt.Sprintf("%s[%v]", "TagsList", i), err.(aws.ErrInvalidParams)) } } } if invalidParams.Len() > 0 { return invalidParams } return nil } // Returns the objects or data listed below if successful. Otherwise, returns // an error. type AddTagsOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s AddTagsOutput) String() string { return awsutil.Prettify(s) } const opAddTags = "AddTags" // AddTagsRequest returns a request value for making API operation for // AWS CloudTrail. // // Adds one or more tags to a trail, up to a limit of 50. Overwrites an existing // tag's value when a new value is specified for an existing tag key. Tag key // names must be unique for a trail; you cannot have two keys with the same // name but different values. If you specify a key without a value, the tag // will be created with the specified key and a value of null. You can tag a // trail that applies to all AWS Regions only from the Region in which the trail // was created (also known as its home region). // // // Example sending a request using AddTagsRequest. // req := client.AddTagsRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/cloudtrail-2013-11-01/AddTags func (c *Client) AddTagsRequest(input *AddTagsInput) AddTagsRequest { op := &aws.Operation{ Name: opAddTags, HTTPMethod: "POST", HTTPPath: "/", } if input == nil { input = &AddTagsInput{} } req := c.newRequest(op, input, &AddTagsOutput{}) return AddTagsRequest{Request: req, Input: input, Copy: c.AddTagsRequest} } // AddTagsRequest is the request type for the // AddTags API operation. type AddTagsRequest struct { *aws.Request Input *AddTagsInput Copy func(*AddTagsInput) AddTagsRequest } // Send marshals and sends the AddTags API request. func (r AddTagsRequest) Send(ctx context.Context) (*AddTagsResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &AddTagsResponse{ AddTagsOutput: r.Request.Data.(*AddTagsOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // AddTagsResponse is the response type for the // AddTags API operation. type AddTagsResponse struct { *AddTagsOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // AddTags request. func (r *AddTagsResponse) SDKResponseMetdata() *aws.Response { return r.response }