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 ResourceCatalogs viewable is 1000.
Usage¶
sagemaker_list_resource_catalogs(NameContains, CreationTimeAfter,
CreationTimeBefore, SortOrder, SortBy, MaxResults, NextToken)
Arguments¶
NameContainsA string that partially matches one or more
ResourceCatalogs names. FiltersResourceCatalogby name.CreationTimeAfterUse this parameter to search for
ResourceCatalogs created after a specific date and time.CreationTimeBeforeUse this parameter to search for
ResourceCatalogs created before a specific date and time.SortOrderThe order in which the resource catalogs are listed.
SortByThe value on which the resource catalog list is sorted.
MaxResultsThe maximum number of results returned by
list_resource_catalogs.NextTokenA token to resume pagination of
list_resource_catalogsresults.
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"
)