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
ResourceCatalog
s names. FiltersResourceCatalog
by name.CreationTimeAfter
Use this parameter to search for
ResourceCatalog
s created after a specific date and time.CreationTimeBefore
Use this parameter to search for
ResourceCatalog
s created before a specific date and time.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
list_resource_catalogs
.NextToken
A token to resume pagination of
list_resource_catalogs
results.
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"
)