Skip to content

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

NextToken

If the result of a list_notebook_instance_lifecycle_configs request was truncated, the response includes a NextToken. To get the next set of lifecycle configurations, use the token in the next request.

MaxResults

The maximum number of lifecycle configurations to return in the response.

SortBy

Sorts the list of results. The default is CreationTime.

SortOrder

The sort order for results.

NameContains

A string in the lifecycle configuration name. This filter returns only lifecycle configurations whose name contains the specified string.

CreationTimeBefore

A filter that returns only lifecycle configurations that were created before the specified time (timestamp).

CreationTimeAfter

A filter that returns only lifecycle configurations that were created after the specified time (timestamp).

LastModifiedTimeBefore

A filter that returns only lifecycle configurations that were modified before the specified time (timestamp).

LastModifiedTimeAfter

A 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"
  )
)