// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package cloudtrail import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) // Specifies a list of trail tags to return. type ListTagsInput struct { _ struct{} `type:"structure"` // Reserved for future use. NextToken *string `type:"string"` // Specifies a list of trail ARNs whose tags will be listed. The list has a // limit of 20 ARNs. The format of a trail ARN is: // // arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail // // ResourceIdList is a required field ResourceIdList []string `type:"list" 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.ResourceIdList == nil { invalidParams.Add(aws.NewErrParamRequired("ResourceIdList")) } if invalidParams.Len() > 0 { return invalidParams } return nil } // Returns the objects or data listed below if successful. Otherwise, returns // an error. type ListTagsOutput struct { _ struct{} `type:"structure"` // Reserved for future use. NextToken *string `type:"string"` // A list of resource tags. ResourceTagList []ResourceTag `type:"list"` } // String returns the string representation func (s ListTagsOutput) String() string { return awsutil.Prettify(s) } const opListTags = "ListTags" // ListTagsRequest returns a request value for making API operation for // AWS CloudTrail. // // Lists the tags for the trail in the current region. // // // Example sending a request using ListTagsRequest. // req := client.ListTagsRequest(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/ListTags func (c *Client) ListTagsRequest(input *ListTagsInput) ListTagsRequest { op := &aws.Operation{ Name: opListTags, HTTPMethod: "POST", HTTPPath: "/", Paginator: &aws.Paginator{ InputTokens: []string{"NextToken"}, OutputTokens: []string{"NextToken"}, LimitToken: "", TruncationToken: "", }, } 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 } // NewListTagsRequestPaginator returns a paginator for ListTags. // Use Next method to get the next page, and CurrentPage to get the current // response page from the paginator. Next will return false, if there are // no more pages, or an error was encountered. // // Note: This operation can generate multiple requests to a service. // // // Example iterating over pages. // req := client.ListTagsRequest(input) // p := cloudtrail.NewListTagsRequestPaginator(req) // // for p.Next(context.TODO()) { // page := p.CurrentPage() // } // // if err := p.Err(); err != nil { // return err // } // func NewListTagsPaginator(req ListTagsRequest) ListTagsPaginator { return ListTagsPaginator{ Pager: aws.Pager{ NewRequest: func(ctx context.Context) (*aws.Request, error) { var inCpy *ListTagsInput if req.Input != nil { tmp := *req.Input inCpy = &tmp } newReq := req.Copy(inCpy) newReq.SetContext(ctx) return newReq.Request, nil }, }, } } // ListTagsPaginator is used to paginate the request. This can be done by // calling Next and CurrentPage. type ListTagsPaginator struct { aws.Pager } func (p *ListTagsPaginator) CurrentPage() *ListTagsOutput { return p.Pager.CurrentPage().(*ListTagsOutput) } // 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 }