List Studio Lifecycle Configs
| sagemaker_list_studio_lifecycle_configs | R Documentation |
Lists the Amazon SageMaker Studio Lifecycle Configurations in your Amazon Web Services Account¶
Description¶
Lists the Amazon SageMaker Studio Lifecycle Configurations in your Amazon Web Services Account.
Usage¶
sagemaker_list_studio_lifecycle_configs(MaxResults, NextToken,
NameContains, AppTypeEquals, CreationTimeBefore, CreationTimeAfter,
ModifiedTimeBefore, ModifiedTimeAfter, SortBy, SortOrder)
Arguments¶
MaxResultsThe total number of items to return in the response. If the total number of items available is more than the value specified, a
NextTokenis provided in the response. To resume pagination, provide theNextTokenvalue in the as part of a subsequent call. The default value is 10.NextTokenIf the previous call to ListStudioLifecycleConfigs didn't return the full set of Lifecycle Configurations, the call returns a token for getting the next set of Lifecycle Configurations.
NameContainsA string in the Lifecycle Configuration name. This filter returns only Lifecycle Configurations whose name contains the specified string.
AppTypeEqualsA parameter to search for the App Type to which the Lifecycle Configuration is attached.
CreationTimeBeforeA filter that returns only Lifecycle Configurations created on or before the specified time.
CreationTimeAfterA filter that returns only Lifecycle Configurations created on or after the specified time.
ModifiedTimeBeforeA filter that returns only Lifecycle Configurations modified before the specified time.
ModifiedTimeAfterA filter that returns only Lifecycle Configurations modified after the specified time.
SortByThe property used to sort results. The default value is CreationTime.
SortOrderThe sort order. The default value is Descending.
Value¶
A list with the following syntax:
list(
NextToken = "string",
StudioLifecycleConfigs = list(
list(
StudioLifecycleConfigArn = "string",
StudioLifecycleConfigName = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
StudioLifecycleConfigAppType = "JupyterServer"|"KernelGateway"|"CodeEditor"|"JupyterLab"
)
)
)
Request syntax¶
svc$list_studio_lifecycle_configs(
MaxResults = 123,
NextToken = "string",
NameContains = "string",
AppTypeEquals = "JupyterServer"|"KernelGateway"|"CodeEditor"|"JupyterLab",
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
ModifiedTimeBefore = as.POSIXct(
"2015-01-01"
),
ModifiedTimeAfter = as.POSIXct(
"2015-01-01"
),
SortBy = "CreationTime"|"LastModifiedTime"|"Name",
SortOrder = "Ascending"|"Descending"
)