Skip to main content

raster_data_collections

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

Overview

Nameraster_data_collections
TypeResource
Idaws.sagemaker_geospatial.raster_data_collections

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe Amazon Resource Name (ARN) of the raster data collection. (pattern: <code>^arn:aws[a-z-]{0,12}:sagemaker-geospatial:[a-z0-9-]{1,25}:[0-9]{12}:raster-data-collection/(public|premium|user)/[a-z0-9]{12,}$</code>)
descriptionstringA description of the raster data collection.
description_page_urlstringThe URL of the description page.
image_source_bandsarrayThe list of image source bands in the raster data collection.
namestringThe name of the raster data collection.
supported_filtersarrayThe filters supported by the raster data collection.
tagsobjectEach tag consists of a key and a value.
typestringThe raster data collection type. (PUBLIC, PREMIUM, USER)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_raster_data_collectionselectarn, regionUse this operation to get details of a specific raster data collection.
search_raster_data_collectionselectregionAllows you run image query on a specific raster data collection to get a list of the satellite imagery matching the selected filters.
list_raster_data_collectionsselectregionMaxResults, NextTokenUse this operation to get raster data collections.

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
arnstringThe Amazon Resource Name (ARN) of the raster data collection.
regionstringAWS region (default: us-east-1)
MaxResultsintegerThe total number of items to return.
NextTokenstringIf the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.

SELECT examples

Use this operation to get details of a specific raster data collection.

SELECT
arn,
description,
description_page_url,
image_source_bands,
name,
supported_filters,
tags,
type
FROM aws.sagemaker_geospatial.raster_data_collections
WHERE arn = '{{ arn }}' -- required
AND region = '{{ region }}' -- required
;