Returns a list of the SageMaker AI notebook instances in the requester's account in an Amazon Web Services Region
Source:R/sagemaker_operations.R
sagemaker_list_notebook_instances.RdReturns a list of the SageMaker AI notebook instances in the requester's account in an Amazon Web Services Region.
See https://www.paws-r-sdk.com/docs/sagemaker_list_notebook_instances/ for full documentation.
Usage
sagemaker_list_notebook_instances(
NextToken = NULL,
MaxResults = NULL,
SortBy = NULL,
SortOrder = NULL,
NameContains = NULL,
CreationTimeBefore = NULL,
CreationTimeAfter = NULL,
LastModifiedTimeBefore = NULL,
LastModifiedTimeAfter = NULL,
StatusEquals = NULL,
NotebookInstanceLifecycleConfigNameContains = NULL,
DefaultCodeRepositoryContains = NULL,
AdditionalCodeRepositoryEquals = NULL
)Arguments
- NextToken
If the previous call to the
list_notebook_instancesis truncated, the response includes aNextToken. You can use this token in your subsequentlist_notebook_instancesrequest to fetch the next set of notebook instances.You might specify a filter or a sort order in your request. When response is truncated, you must use the same values for the filer and sort order in the next request.
- MaxResults
The maximum number of notebook instances to return.
- SortBy
The field to sort results by. The default is
Name.- SortOrder
The sort order for results.
- NameContains
A string in the notebook instances' name. This filter returns only notebook instances whose name contains the specified string.
- CreationTimeBefore
A filter that returns only notebook instances that were created before the specified time (timestamp).
- CreationTimeAfter
A filter that returns only notebook instances that were created after the specified time (timestamp).
- LastModifiedTimeBefore
A filter that returns only notebook instances that were modified before the specified time (timestamp).
- LastModifiedTimeAfter
A filter that returns only notebook instances that were modified after the specified time (timestamp).
- StatusEquals
A filter that returns only notebook instances with the specified status.
- NotebookInstanceLifecycleConfigNameContains
A string in the name of a notebook instances lifecycle configuration associated with this notebook instance. This filter returns only notebook instances associated with a lifecycle configuration with a name that contains the specified string.
- DefaultCodeRepositoryContains
A string in the name or URL of a Git repository associated with this notebook instance. This filter returns only notebook instances associated with a git repository with a name that contains the specified string.
- AdditionalCodeRepositoryEquals
A filter that returns only notebook instances with associated with the specified git repository.