// Code generated by smithy-go-codegen DO NOT EDIT. package sagemaker import ( "context" "fmt" awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware" "github.com/aws/aws-sdk-go-v2/aws/signer/v4" "github.com/aws/aws-sdk-go-v2/service/sagemaker/types" "github.com/aws/smithy-go/middleware" smithyhttp "github.com/aws/smithy-go/transport/http" "time" ) // Gets a list of the projects in an AWS account. func (c *Client) ListProjects(ctx context.Context, params *ListProjectsInput, optFns ...func(*Options)) (*ListProjectsOutput, error) { if params == nil { params = &ListProjectsInput{} } result, metadata, err := c.invokeOperation(ctx, "ListProjects", params, optFns, addOperationListProjectsMiddlewares) if err != nil { return nil, err } out := result.(*ListProjectsOutput) out.ResultMetadata = metadata return out, nil } type ListProjectsInput struct { // A filter that returns the projects that were created after a specified time. CreationTimeAfter *time.Time // A filter that returns the projects that were created before a specified time. CreationTimeBefore *time.Time // The maximum number of projects to return in the response. MaxResults *int32 // A filter that returns the projects whose name contains a specified string. NameContains *string // If the result of the previous ListProjects request was truncated, the response // includes a NextToken. To retrieve the next set of projects, use the token in the // next request. NextToken *string // The field by which to sort results. The default is CreationTime. SortBy types.ProjectSortBy // The sort order for results. The default is Ascending. SortOrder types.ProjectSortOrder } type ListProjectsOutput struct { // A list of summaries of projects. // // This member is required. ProjectSummaryList []types.ProjectSummary // If the result of the previous ListCompilationJobs request was truncated, the // response includes a NextToken. To retrieve the next set of model compilation // jobs, use the token in the next request. NextToken *string // Metadata pertaining to the operation's result. ResultMetadata middleware.Metadata } func addOperationListProjectsMiddlewares(stack *middleware.Stack, options Options) (err error) { err = stack.Serialize.Add(&awsAwsjson11_serializeOpListProjects{}, middleware.After) if err != nil { return err } err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpListProjects{}, middleware.After) if err != nil { return err } if err = addSetLoggerMiddleware(stack, options); err != nil { return err } if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil { return err } if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil { return err } if err = addResolveEndpointMiddleware(stack, options); err != nil { return err } if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil { return err } if err = addRetryMiddlewares(stack, options); err != nil { return err } if err = addHTTPSignerV4Middleware(stack, options); err != nil { return err } if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil { return err } if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil { return err } if err = addClientUserAgent(stack); err != nil { return err } if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil { return err } if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil { return err } if err = stack.Initialize.Add(newServiceMetadataMiddleware_opListProjects(options.Region), middleware.Before); err != nil { return err } if err = addRequestIDRetrieverMiddleware(stack); err != nil { return err } if err = addResponseErrorMiddleware(stack); err != nil { return err } if err = addRequestResponseLogging(stack, options); err != nil { return err } return nil } // ListProjectsAPIClient is a client that implements the ListProjects operation. type ListProjectsAPIClient interface { ListProjects(context.Context, *ListProjectsInput, ...func(*Options)) (*ListProjectsOutput, error) } var _ ListProjectsAPIClient = (*Client)(nil) // ListProjectsPaginatorOptions is the paginator options for ListProjects type ListProjectsPaginatorOptions struct { // The maximum number of projects to return in the response. Limit int32 // Set to true if pagination should stop if the service returns a pagination token // that matches the most recent token provided to the service. StopOnDuplicateToken bool } // ListProjectsPaginator is a paginator for ListProjects type ListProjectsPaginator struct { options ListProjectsPaginatorOptions client ListProjectsAPIClient params *ListProjectsInput nextToken *string firstPage bool } // NewListProjectsPaginator returns a new ListProjectsPaginator func NewListProjectsPaginator(client ListProjectsAPIClient, params *ListProjectsInput, optFns ...func(*ListProjectsPaginatorOptions)) *ListProjectsPaginator { if params == nil { params = &ListProjectsInput{} } options := ListProjectsPaginatorOptions{} if params.MaxResults != nil { options.Limit = *params.MaxResults } for _, fn := range optFns { fn(&options) } return &ListProjectsPaginator{ options: options, client: client, params: params, firstPage: true, } } // HasMorePages returns a boolean indicating whether more pages are available func (p *ListProjectsPaginator) HasMorePages() bool { return p.firstPage || p.nextToken != nil } // NextPage retrieves the next ListProjects page. func (p *ListProjectsPaginator) NextPage(ctx context.Context, optFns ...func(*Options)) (*ListProjectsOutput, error) { if !p.HasMorePages() { return nil, fmt.Errorf("no more pages available") } params := *p.params params.NextToken = p.nextToken var limit *int32 if p.options.Limit > 0 { limit = &p.options.Limit } params.MaxResults = limit result, err := p.client.ListProjects(ctx, ¶ms, optFns...) if err != nil { return nil, err } p.firstPage = false prevToken := p.nextToken p.nextToken = result.NextToken if p.options.StopOnDuplicateToken && prevToken != nil && p.nextToken != nil && *prevToken == *p.nextToken { p.nextToken = nil } return result, nil } func newServiceMetadataMiddleware_opListProjects(region string) *awsmiddleware.RegisterServiceMetadata { return &awsmiddleware.RegisterServiceMetadata{ Region: region, ServiceID: ServiceID, SigningName: "sagemaker", OperationName: "ListProjects", } }