List Notebook Instance Lifecycle Configs
| sagemaker_list_notebook_instance_lifecycle_configs | R Documentation |
Lists notebook instance lifestyle configurations created with the CreateNotebookInstanceLifecycleConfig API¶
Description¶
Lists notebook instance lifestyle configurations created with the
create_notebook_instance_lifecycle_config API.
Usage¶
sagemaker_list_notebook_instance_lifecycle_configs(NextToken,
MaxResults, SortBy, SortOrder, NameContains, CreationTimeBefore,
CreationTimeAfter, LastModifiedTimeBefore, LastModifiedTimeAfter)
Arguments¶
NextTokenIf the result of a
list_notebook_instance_lifecycle_configsrequest was truncated, the response includes aNextToken. To get the next set of lifecycle configurations, use the token in the next request.MaxResultsThe maximum number of lifecycle configurations to return in the response.
SortBySorts the list of results. The default is
CreationTime.SortOrderThe sort order for results.
NameContainsA string in the lifecycle configuration name. This filter returns only lifecycle configurations whose name contains the specified string.
CreationTimeBeforeA filter that returns only lifecycle configurations that were created before the specified time (timestamp).
CreationTimeAfterA filter that returns only lifecycle configurations that were created after the specified time (timestamp).
LastModifiedTimeBeforeA filter that returns only lifecycle configurations that were modified before the specified time (timestamp).
LastModifiedTimeAfterA filter that returns only lifecycle configurations that were modified after the specified time (timestamp).
Value¶
A list with the following syntax:
list(
NextToken = "string",
NotebookInstanceLifecycleConfigs = list(
list(
NotebookInstanceLifecycleConfigName = "string",
NotebookInstanceLifecycleConfigArn = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
)
)
Request syntax¶
svc$list_notebook_instance_lifecycle_configs(
NextToken = "string",
MaxResults = 123,
SortBy = "Name"|"CreationTime"|"LastModifiedTime",
SortOrder = "Ascending"|"Descending",
NameContains = "string",
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeBefore = as.POSIXct(
"2015-01-01"
),
LastModifiedTimeAfter = as.POSIXct(
"2015-01-01"
)
)