List Resource Catalogs
sagemaker_list_resource_catalogs | R Documentation |
Lists Amazon SageMaker Catalogs based on given filters and orders¶
Description¶
Lists Amazon SageMaker Catalogs based on given filters and orders. The
maximum number of ResourceCatalog
s viewable is 1000.
Usage¶
sagemaker_list_resource_catalogs(NameContains, CreationTimeAfter,
CreationTimeBefore, SortOrder, SortBy, MaxResults, NextToken)
Arguments¶
NameContains |
A string that partially matches one or more
|
CreationTimeAfter |
Use this parameter to search for |
CreationTimeBefore |
Use this parameter to search for |
SortOrder |
The order in which the resource catalogs are listed. |
SortBy |
The value on which the resource catalog list is sorted. |
MaxResults |
The maximum number of results returned by
|
NextToken |
A token to resume pagination of
|
Value¶
A list with the following syntax:
list(
ResourceCatalogs = list(
list(
ResourceCatalogArn = "string",
ResourceCatalogName = "string",
Description = "string",
CreationTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_resource_catalogs(
NameContains = "string",
CreationTimeAfter = as.POSIXct(
"2015-01-01"
),
CreationTimeBefore = as.POSIXct(
"2015-01-01"
),
SortOrder = "Ascending"|"Descending",
SortBy = "CreationTime",
MaxResults = 123,
NextToken = "string"
)