// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package mediaconvert 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" ) // List the tags for your AWS Elemental MediaConvert resource by sending a request // with the Amazon Resource Name (ARN) of the resource. To get the ARN, send // a GET request with the resource name. type ListTagsForResourceInput struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) of the resource that you want to list tags // for. To get the ARN, send a GET request with the resource name. // // Arn is a required field Arn *string `location:"uri" locationName:"arn" type:"string" required:"true"` } // String returns the string representation func (s ListTagsForResourceInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *ListTagsForResourceInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "ListTagsForResourceInput"} if s.Arn == nil { invalidParams.Add(aws.NewErrParamRequired("Arn")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s ListTagsForResourceInput) MarshalFields(e protocol.FieldEncoder) error { e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{}) if s.Arn != nil { v := *s.Arn metadata := protocol.Metadata{} e.SetValue(protocol.PathTarget, "arn", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } return nil } // A successful request to list the tags for a resource returns a JSON map of // tags. type ListTagsForResourceOutput struct { _ struct{} `type:"structure"` // The Amazon Resource Name (ARN) and tags for an AWS Elemental MediaConvert // resource. ResourceTags *ResourceTags `locationName:"resourceTags" type:"structure"` } // String returns the string representation func (s ListTagsForResourceOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s ListTagsForResourceOutput) MarshalFields(e protocol.FieldEncoder) error { if s.ResourceTags != nil { v := s.ResourceTags metadata := protocol.Metadata{} e.SetFields(protocol.BodyTarget, "resourceTags", v, metadata) } return nil } const opListTagsForResource = "ListTagsForResource" // ListTagsForResourceRequest returns a request value for making API operation for // AWS Elemental MediaConvert. // // Retrieve the tags for a MediaConvert resource. // // // Example sending a request using ListTagsForResourceRequest. // req := client.ListTagsForResourceRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/mediaconvert-2017-08-29/ListTagsForResource func (c *Client) ListTagsForResourceRequest(input *ListTagsForResourceInput) ListTagsForResourceRequest { op := &aws.Operation{ Name: opListTagsForResource, HTTPMethod: "GET", HTTPPath: "/2017-08-29/tags/{arn}", } if input == nil { input = &ListTagsForResourceInput{} } req := c.newRequest(op, input, &ListTagsForResourceOutput{}) return ListTagsForResourceRequest{Request: req, Input: input, Copy: c.ListTagsForResourceRequest} } // ListTagsForResourceRequest is the request type for the // ListTagsForResource API operation. type ListTagsForResourceRequest struct { *aws.Request Input *ListTagsForResourceInput Copy func(*ListTagsForResourceInput) ListTagsForResourceRequest } // Send marshals and sends the ListTagsForResource API request. func (r ListTagsForResourceRequest) Send(ctx context.Context) (*ListTagsForResourceResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &ListTagsForResourceResponse{ ListTagsForResourceOutput: r.Request.Data.(*ListTagsForResourceOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // ListTagsForResourceResponse is the response type for the // ListTagsForResource API operation. type ListTagsForResourceResponse struct { *ListTagsForResourceOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // ListTagsForResource request. func (r *ListTagsForResourceResponse) SDKResponseMetdata() *aws.Response { return r.response }