List Projects
| sagemaker_list_projects | R Documentation |
Gets a list of the projects in an Amazon Web Services account¶
Description¶
Gets a list of the projects in an Amazon Web Services account.
Usage¶
sagemaker_list_projects(CreationTimeAfter, CreationTimeBefore,
MaxResults, NameContains, NextToken, SortBy, SortOrder)
Arguments¶
CreationTimeAfterA filter that returns the projects that were created after a specified time.
CreationTimeBeforeA filter that returns the projects that were created before a specified time.
MaxResultsThe maximum number of projects to return in the response.
NameContainsA filter that returns the projects whose name contains a specified string.
NextTokenIf the result of the previous
list_projectsrequest was truncated, the response includes aNextToken. To retrieve the next set of projects, use the token in the next request.SortByThe field by which to sort results. The default is
CreationTime.SortOrderThe sort order for results. The default is
Ascending.
Value¶
A list with the following syntax:
list(
ProjectSummaryList = list(
list(
ProjectName = "string",
ProjectDescription = "string",
ProjectArn = "string",
ProjectId = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
ProjectStatus = "Pending"|"CreateInProgress"|"CreateCompleted"|"CreateFailed"|"DeleteInProgress"|"DeleteFailed"|"DeleteCompleted"|"UpdateInProgress"|"UpdateCompleted"|"UpdateFailed"
)
),
NextToken = "string"
)