Skip to main content

signal_catalogs

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

Overview

Namesignal_catalogs
TypeResource
Idaws.iotfleetwise.signal_catalogs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the signal catalog. (pattern: <code>[a-zA-Z\d-_:]+</code>)
arnstringThe Amazon Resource Name (ARN) of the signal catalog.
creation_timestring (date-time)The time the signal catalog was created in seconds since epoch (January 1, 1970 at midnight UTC time).
descriptionstringA brief description of the signal catalog. (pattern: <code>[^\u0000-\u001F\u007F]+</code>)
last_modification_timestring (date-time)The last time the signal catalog was modified.
node_countsobjectThe total number of network nodes specified in a signal catalog.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_signal_catalogselectregionRetrieves information about a signal catalog.
list_signal_catalogsselectregionLists all the created signal catalogs in an Amazon Web Services account. You can use to list information about each signal (node) specified in a signal catalog. This API operation uses pagination. Specify the nextToken parameter in the request to return more results.
create_signal_cataloginsertregion, nameCreates a collection of standardized signals that can be reused to create vehicle models.
update_signal_catalogupdateregion, nameUpdates a signal catalog.
delete_signal_catalogdeleteregionDeletes a signal catalog.

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

Retrieves information about a signal catalog.

SELECT
name,
arn,
creation_time,
description,
last_modification_time,
node_counts
FROM aws.iotfleetwise.signal_catalogs
WHERE region = '{{ region }}' -- required
;

INSERT examples

Creates a collection of standardized signals that can be reused to create vehicle models.

INSERT INTO aws.iotfleetwise.signal_catalogs (
name,
description,
nodes,
tags,
region
)
SELECT
'{{ name }}' /* required */,
'{{ description }}',
'{{ nodes }}',
'{{ tags }}',
'{{ region }}'
RETURNING
name,
arn
;

UPDATE examples

Updates a signal catalog.

UPDATE aws.iotfleetwise.signal_catalogs
SET
name = '{{ name }}',
description = '{{ description }}',
nodesToAdd = '{{ nodesToAdd }}',
nodesToUpdate = '{{ nodesToUpdate }}',
nodesToRemove = '{{ nodesToRemove }}'
WHERE
region = '{{ region }}' --required
AND name = '{{ name }}' --required
RETURNING
name,
arn;

DELETE examples

Deletes a signal catalog.

DELETE FROM aws.iotfleetwise.signal_catalogs
WHERE region = '{{ region }}' --required
;