// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT. package iam import ( "context" "github.com/aws/aws-sdk-go-v2/aws" "github.com/aws/aws-sdk-go-v2/internal/awsutil" ) type ListVirtualMFADevicesInput struct { _ struct{} `type:"structure"` // The status (Unassigned or Assigned) of the devices to list. If you do not // specify an AssignmentStatus, the operation defaults to Any, which lists both // assigned and unassigned virtual MFA devices., AssignmentStatus AssignmentStatusType `type:"string" enum:"true"` // Use this parameter only when paginating results and only after you receive // a response indicating that the results are truncated. Set it to the value // of the Marker element in the response that you received to indicate where // the next call should start. Marker *string `min:"1" type:"string"` // Use this only when paginating results to indicate the maximum number of items // you want in the response. If additional items exist beyond the maximum you // specify, the IsTruncated response element is true. // // If you do not include this parameter, the number of items defaults to 100. // Note that IAM might return fewer results, even when there are more results // available. In that case, the IsTruncated response element returns true, and // Marker contains a value to include in the subsequent call that tells the // service where to continue from. MaxItems *int64 `min:"1" type:"integer"` } // String returns the string representation func (s ListVirtualMFADevicesInput) String() string { return awsutil.Prettify(s) } // Validate inspects the fields of the type to determine if they are valid. func (s *ListVirtualMFADevicesInput) Validate() error { invalidParams := aws.ErrInvalidParams{Context: "ListVirtualMFADevicesInput"} if s.Marker != nil && len(*s.Marker) < 1 { invalidParams.Add(aws.NewErrParamMinLen("Marker", 1)) } if s.MaxItems != nil && *s.MaxItems < 1 { invalidParams.Add(aws.NewErrParamMinValue("MaxItems", 1)) } if invalidParams.Len() > 0 { return invalidParams } return nil } // Contains the response to a successful ListVirtualMFADevices request. type ListVirtualMFADevicesOutput struct { _ struct{} `type:"structure"` // A flag that indicates whether there are more items to return. If your results // were truncated, you can make a subsequent pagination request using the Marker // request parameter to retrieve more items. Note that IAM might return fewer // than the MaxItems number of results even when there are more results available. // We recommend that you check IsTruncated after every call to ensure that you // receive all your results. IsTruncated *bool `type:"boolean"` // When IsTruncated is true, this element is present and contains the value // to use for the Marker parameter in a subsequent pagination request. Marker *string `type:"string"` // The list of virtual MFA devices in the current account that match the AssignmentStatus // value that was passed in the request. // // VirtualMFADevices is a required field VirtualMFADevices []VirtualMFADevice `type:"list" required:"true"` } // String returns the string representation func (s ListVirtualMFADevicesOutput) String() string { return awsutil.Prettify(s) } const opListVirtualMFADevices = "ListVirtualMFADevices" // ListVirtualMFADevicesRequest returns a request value for making API operation for // AWS Identity and Access Management. // // Lists the virtual MFA devices defined in the AWS account by assignment status. // If you do not specify an assignment status, the operation returns a list // of all virtual MFA devices. Assignment status can be Assigned, Unassigned, // or Any. // // You can paginate the results using the MaxItems and Marker parameters. // // // Example sending a request using ListVirtualMFADevicesRequest. // req := client.ListVirtualMFADevicesRequest(params) // resp, err := req.Send(context.TODO()) // if err == nil { // fmt.Println(resp) // } // // Please also see https://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/ListVirtualMFADevices func (c *Client) ListVirtualMFADevicesRequest(input *ListVirtualMFADevicesInput) ListVirtualMFADevicesRequest { op := &aws.Operation{ Name: opListVirtualMFADevices, HTTPMethod: "POST", HTTPPath: "/", Paginator: &aws.Paginator{ InputTokens: []string{"Marker"}, OutputTokens: []string{"Marker"}, LimitToken: "MaxItems", TruncationToken: "IsTruncated", }, } if input == nil { input = &ListVirtualMFADevicesInput{} } req := c.newRequest(op, input, &ListVirtualMFADevicesOutput{}) return ListVirtualMFADevicesRequest{Request: req, Input: input, Copy: c.ListVirtualMFADevicesRequest} } // ListVirtualMFADevicesRequest is the request type for the // ListVirtualMFADevices API operation. type ListVirtualMFADevicesRequest struct { *aws.Request Input *ListVirtualMFADevicesInput Copy func(*ListVirtualMFADevicesInput) ListVirtualMFADevicesRequest } // Send marshals and sends the ListVirtualMFADevices API request. func (r ListVirtualMFADevicesRequest) Send(ctx context.Context) (*ListVirtualMFADevicesResponse, error) { r.Request.SetContext(ctx) err := r.Request.Send() if err != nil { return nil, err } resp := &ListVirtualMFADevicesResponse{ ListVirtualMFADevicesOutput: r.Request.Data.(*ListVirtualMFADevicesOutput), response: &aws.Response{Request: r.Request}, } return resp, nil } // NewListVirtualMFADevicesRequestPaginator returns a paginator for ListVirtualMFADevices. // 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.ListVirtualMFADevicesRequest(input) // p := iam.NewListVirtualMFADevicesRequestPaginator(req) // // for p.Next(context.TODO()) { // page := p.CurrentPage() // } // // if err := p.Err(); err != nil { // return err // } // func NewListVirtualMFADevicesPaginator(req ListVirtualMFADevicesRequest) ListVirtualMFADevicesPaginator { return ListVirtualMFADevicesPaginator{ Pager: aws.Pager{ NewRequest: func(ctx context.Context) (*aws.Request, error) { var inCpy *ListVirtualMFADevicesInput if req.Input != nil { tmp := *req.Input inCpy = &tmp } newReq := req.Copy(inCpy) newReq.SetContext(ctx) return newReq.Request, nil }, }, } } // ListVirtualMFADevicesPaginator is used to paginate the request. This can be done by // calling Next and CurrentPage. type ListVirtualMFADevicesPaginator struct { aws.Pager } func (p *ListVirtualMFADevicesPaginator) CurrentPage() *ListVirtualMFADevicesOutput { return p.Pager.CurrentPage().(*ListVirtualMFADevicesOutput) } // ListVirtualMFADevicesResponse is the response type for the // ListVirtualMFADevices API operation. type ListVirtualMFADevicesResponse struct { *ListVirtualMFADevicesOutput response *aws.Response } // SDKResponseMetdata returns the response metadata for the // ListVirtualMFADevices request. func (r *ListVirtualMFADevicesResponse) SDKResponseMetdata() *aws.Response { return r.response }