// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package kinesisvideo import ( "context" "fmt" "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" ) type TagResourceInput struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) of the signaling channel to which you want // to add tags. // // ResourceARN is a required field ResourceARN *string `min:"1" type:"string" required:"true"` // A list of tags to associate with the specified signaling channel. Each tag // is a key-value pair. // // Tags is a required field Tags []Tag `min:"1" type:"list" required:"true"` } // String returns the string representation func (s TagResourceInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *TagResourceInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "TagResourceInput"} 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.Tags == nil { invalidParams.Add(aws.NewErrParamRequired("Tags")) } if s.Tags != nil && len(s.Tags) < 1 { invalidParams.Add(aws.NewErrParamMinLen("Tags", 1)) } if s.Tags != nil { for i, v := range s.Tags { if err := v.Validate(); err != nil { invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Tags", i), err.(aws.ErrInvalidParams)) } } } if invalidParams.Len() > 0 { return invalidParams } return nil } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s TagResourceInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) if s.ResourceARN != nil { v := *s.ResourceARN metadata := protocol.Metadata{} e.SetValue(protocol.BodyTarget, "ResourceARN", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } if s.Tags != nil { v := s.Tags metadata := protocol.Metadata{} ls0 := e.List(protocol.BodyTarget, "Tags", metadata) ls0.Start() for _, v1 := range v { ls0.ListAddFields(v1) } ls0.End() } return nil } type TagResourceOutput struct { _ struct{} `type:"structure"` } // String returns the string representation func (s TagResourceOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s TagResourceOutput) MarshalFields(e protocol.FieldEncoder) error { return nil } const opTagResource = "TagResource" // TagResourceRequest returns a request value for making API operation for // Amazon Kinesis Video Streams. // // Adds one or more tags to a signaling channel. A tag is a key-value pair (the // value is optional) that you can define and assign to AWS resources. If you // specify a tag that already exists, the tag value is replaced with the value // that you specify in the request. For more information, see Using Cost Allocation // Tags (https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) // in the AWS Billing and Cost Management User Guide. // // // Example sending a request using TagResourceRequest. // req := client.TagResourceRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/TagResource func (c *Client) TagResourceRequest(input *TagResourceInput) TagResourceRequest { op := &aws.Operation{ Name: opTagResource, HTTPMethod: "POST", HTTPPath: "/TagResource", } if input == nil { input = &TagResourceInput{} } req := c.newRequest(op, input, &TagResourceOutput{}) return TagResourceRequest{Request: req, Input: input, Copy: c.TagResourceRequest} } // TagResourceRequest is the request type for the // TagResource API operation. type TagResourceRequest struct { *aws.Request Input *TagResourceInput Copy func(*TagResourceInput) TagResourceRequest } // Send marshals and sends the TagResource API request. func (r TagResourceRequest) Send(ctx context.Context) (*TagResourceResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &TagResourceResponse{ TagResourceOutput: r.Request.Data.(*TagResourceOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // TagResourceResponse is the response type for the // TagResource API operation. type TagResourceResponse struct { *TagResourceOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // TagResource request. func (r *TagResourceResponse) SDKResponseMetdata() *aws.Response { return r.response }