Skip to main content

resource_catalogs

Creates, updates, deletes, gets or lists a resource_catalogs resource.

Overview

Nameresource_catalogs
TypeResource
Idaws.sagemaker.resource_catalogs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
creation_timestring (date-time)The time the ResourceCatalog was created.
descriptionstringA free form description of the ResourceCatalog.
resource_catalog_arnstringThe Amazon Resource Name (ARN) of the ResourceCatalog. (pattern: <code>arn:aws[a-z-]:sagemaker:[a-z0-9-]:[0-9]{12}:sagemaker-catalog/.*</code>)
resource_catalog_namestringThe name of the ResourceCatalog.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_resource_catalogsselectregionLists Amazon SageMaker Catalogs based on given filters and orders. The maximum number of ResourceCatalogs viewable is 1000.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists Amazon SageMaker Catalogs based on given filters and orders. The maximum number of ResourceCatalogs viewable is 1000.

SELECT
creation_time,
description,
resource_catalog_arn,
resource_catalog_name
FROM aws.sagemaker.resource_catalogs
WHERE region = '{{ region }}' -- required
;