1// Code generated by smithy-go-codegen DO NOT EDIT. 2 3package alexaforbusiness 4 5import ( 6 "context" 7 "fmt" 8 awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware" 9 "github.com/aws/aws-sdk-go-v2/aws/signer/v4" 10 "github.com/aws/aws-sdk-go-v2/service/alexaforbusiness/types" 11 "github.com/aws/smithy-go/middleware" 12 smithyhttp "github.com/aws/smithy-go/transport/http" 13) 14 15// Searches room profiles and lists the ones that meet a set of filter criteria. 16func (c *Client) SearchProfiles(ctx context.Context, params *SearchProfilesInput, optFns ...func(*Options)) (*SearchProfilesOutput, error) { 17 if params == nil { 18 params = &SearchProfilesInput{} 19 } 20 21 result, metadata, err := c.invokeOperation(ctx, "SearchProfiles", params, optFns, addOperationSearchProfilesMiddlewares) 22 if err != nil { 23 return nil, err 24 } 25 26 out := result.(*SearchProfilesOutput) 27 out.ResultMetadata = metadata 28 return out, nil 29} 30 31type SearchProfilesInput struct { 32 33 // The filters to use to list a specified set of room profiles. Supported filter 34 // keys are ProfileName and Address. Required. 35 Filters []types.Filter 36 37 // The maximum number of results to include in the response. If more results exist 38 // than the specified MaxResults value, a token is included in the response so that 39 // the remaining results can be retrieved. 40 MaxResults *int32 41 42 // An optional token returned from a prior request. Use this token for pagination 43 // of results from this action. If this parameter is specified, the response 44 // includes only results beyond the token, up to the value specified by MaxResults. 45 NextToken *string 46 47 // The sort order to use in listing the specified set of room profiles. Supported 48 // sort keys are ProfileName and Address. 49 SortCriteria []types.Sort 50} 51 52type SearchProfilesOutput struct { 53 54 // The token returned to indicate that there is more data available. 55 NextToken *string 56 57 // The profiles that meet the specified set of filter criteria, in sort order. 58 Profiles []types.ProfileData 59 60 // The total number of room profiles returned. 61 TotalCount *int32 62 63 // Metadata pertaining to the operation's result. 64 ResultMetadata middleware.Metadata 65} 66 67func addOperationSearchProfilesMiddlewares(stack *middleware.Stack, options Options) (err error) { 68 err = stack.Serialize.Add(&awsAwsjson11_serializeOpSearchProfiles{}, middleware.After) 69 if err != nil { 70 return err 71 } 72 err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpSearchProfiles{}, middleware.After) 73 if err != nil { 74 return err 75 } 76 if err = addSetLoggerMiddleware(stack, options); err != nil { 77 return err 78 } 79 if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil { 80 return err 81 } 82 if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil { 83 return err 84 } 85 if err = addResolveEndpointMiddleware(stack, options); err != nil { 86 return err 87 } 88 if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil { 89 return err 90 } 91 if err = addRetryMiddlewares(stack, options); err != nil { 92 return err 93 } 94 if err = addHTTPSignerV4Middleware(stack, options); err != nil { 95 return err 96 } 97 if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil { 98 return err 99 } 100 if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil { 101 return err 102 } 103 if err = addClientUserAgent(stack); err != nil { 104 return err 105 } 106 if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil { 107 return err 108 } 109 if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil { 110 return err 111 } 112 if err = addOpSearchProfilesValidationMiddleware(stack); err != nil { 113 return err 114 } 115 if err = stack.Initialize.Add(newServiceMetadataMiddleware_opSearchProfiles(options.Region), middleware.Before); err != nil { 116 return err 117 } 118 if err = addRequestIDRetrieverMiddleware(stack); err != nil { 119 return err 120 } 121 if err = addResponseErrorMiddleware(stack); err != nil { 122 return err 123 } 124 if err = addRequestResponseLogging(stack, options); err != nil { 125 return err 126 } 127 return nil 128} 129 130// SearchProfilesAPIClient is a client that implements the SearchProfiles 131// operation. 132type SearchProfilesAPIClient interface { 133 SearchProfiles(context.Context, *SearchProfilesInput, ...func(*Options)) (*SearchProfilesOutput, error) 134} 135 136var _ SearchProfilesAPIClient = (*Client)(nil) 137 138// SearchProfilesPaginatorOptions is the paginator options for SearchProfiles 139type SearchProfilesPaginatorOptions struct { 140 // The maximum number of results to include in the response. If more results exist 141 // than the specified MaxResults value, a token is included in the response so that 142 // the remaining results can be retrieved. 143 Limit int32 144 145 // Set to true if pagination should stop if the service returns a pagination token 146 // that matches the most recent token provided to the service. 147 StopOnDuplicateToken bool 148} 149 150// SearchProfilesPaginator is a paginator for SearchProfiles 151type SearchProfilesPaginator struct { 152 options SearchProfilesPaginatorOptions 153 client SearchProfilesAPIClient 154 params *SearchProfilesInput 155 nextToken *string 156 firstPage bool 157} 158 159// NewSearchProfilesPaginator returns a new SearchProfilesPaginator 160func NewSearchProfilesPaginator(client SearchProfilesAPIClient, params *SearchProfilesInput, optFns ...func(*SearchProfilesPaginatorOptions)) *SearchProfilesPaginator { 161 if params == nil { 162 params = &SearchProfilesInput{} 163 } 164 165 options := SearchProfilesPaginatorOptions{} 166 if params.MaxResults != nil { 167 options.Limit = *params.MaxResults 168 } 169 170 for _, fn := range optFns { 171 fn(&options) 172 } 173 174 return &SearchProfilesPaginator{ 175 options: options, 176 client: client, 177 params: params, 178 firstPage: true, 179 } 180} 181 182// HasMorePages returns a boolean indicating whether more pages are available 183func (p *SearchProfilesPaginator) HasMorePages() bool { 184 return p.firstPage || p.nextToken != nil 185} 186 187// NextPage retrieves the next SearchProfiles page. 188func (p *SearchProfilesPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*SearchProfilesOutput, error) { 189 if !p.HasMorePages() { 190 return nil, fmt.Errorf("no more pages available") 191 } 192 193 params := *p.params 194 params.NextToken = p.nextToken 195 196 var limit *int32 197 if p.options.Limit > 0 { 198 limit = &p.options.Limit 199 } 200 params.MaxResults = limit 201 202 result, err := p.client.SearchProfiles(ctx, ¶ms, optFns...) 203 if err != nil { 204 return nil, err 205 } 206 p.firstPage = false 207 208 prevToken := p.nextToken 209 p.nextToken = result.NextToken 210 211 if p.options.StopOnDuplicateToken && prevToken != nil && p.nextToken != nil && *prevToken == *p.nextToken { 212 p.nextToken = nil 213 } 214 215 return result, nil 216} 217 218func newServiceMetadataMiddleware_opSearchProfiles(region string) *awsmiddleware.RegisterServiceMetadata { 219 return &awsmiddleware.RegisterServiceMetadata{ 220 Region: region, 221 ServiceID: ServiceID, 222 SigningName: "a4b", 223 OperationName: "SearchProfiles", 224 } 225} 226