// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package elasticsearchservice 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" ) // Container for the parameters to the ListTags operation. Specify the ARN for // the Elasticsearch domain to which the tags are attached that you want to // view are attached. type ListTagsInput struct { _ struct{} `type:"structure"` // Specify the ARN for the Elasticsearch domain to which the tags are attached // that you want to view. // // ARN is a required field ARN *string `location:"querystring" locationName:"arn" type:"string" required:"true"` } // String returns the string representation func (s ListTagsInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *ListTagsInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "ListTagsInput"} 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 ListTagsInput) 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.QueryTarget, "arn", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata) } return nil } // The result of a ListTags operation. Contains tags for all requested Elasticsearch // domains. type ListTagsOutput struct { _ struct{} `type:"structure"` // List of Tag for the requested Elasticsearch domain. TagList []Tag `type:"list"` } // String returns the string representation func (s ListTagsOutput) String() string { return awsutil.Prettify(s) } // MarshalFields encodes the AWS API shape using the passed in protocol encoder. func (s ListTagsOutput) MarshalFields(e protocol.FieldEncoder) error { if s.TagList != nil { v := s.TagList metadata := protocol.Metadata{} ls0 := e.List(protocol.BodyTarget, "TagList", metadata) ls0.Start() for _, v1 := range v { ls0.ListAddFields(v1) } ls0.End() } return nil } const opListTags = "ListTags" // ListTagsRequest returns a request value for making API operation for // Amazon Elasticsearch Service. // // Returns all tags for the given Elasticsearch domain. // // // Example sending a request using ListTagsRequest. // req := client.ListTagsRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } func (c *Client) ListTagsRequest(input *ListTagsInput) ListTagsRequest { op := &aws.Operation{ Name: opListTags, HTTPMethod: "GET", HTTPPath: "/2015-01-01/tags/", } if input == nil { input = &ListTagsInput{} } req := c.newRequest(op, input, &ListTagsOutput{}) return ListTagsRequest{Request: req, Input: input, Copy: c.ListTagsRequest} } // ListTagsRequest is the request type for the // ListTags API operation. type ListTagsRequest struct { *aws.Request Input *ListTagsInput Copy func(*ListTagsInput) ListTagsRequest } // Send marshals and sends the ListTags API request. func (r ListTagsRequest) Send(ctx context.Context) (*ListTagsResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &ListTagsResponse{ ListTagsOutput: r.Request.Data.(*ListTagsOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // ListTagsResponse is the response type for the // ListTags API operation. type ListTagsResponse struct { *ListTagsOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // ListTags request. func (r *ListTagsResponse) SDKResponseMetdata() *aws.Response { return r.response }