Skip to main content

model_manifests

Creates, updates, deletes or gets a model_manifest resource or lists model_manifests in a region

Overview

Namemodel_manifests
TypeResource
DescriptionDefinition of AWS::IoTFleetWise::ModelManifest Resource Type
Idaws.iotfleetwise.model_manifests

Fields

NameDatatypeDescription
arnstring
creation_timestring
descriptionstring
last_modification_timestring
namestring
nodesarray
signal_catalog_arnstring
statusstring
tagsarray
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTSignalCatalogArn, Name, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all model_manifests in a region.

SELECT
region,
arn,
creation_time,
description,
last_modification_time,
name,
nodes,
signal_catalog_arn,
status,
tags
FROM aws.iotfleetwise.model_manifests
WHERE region = 'us-east-1';

Gets all properties from an individual model_manifest.

SELECT
region,
arn,
creation_time,
description,
last_modification_time,
name,
nodes,
signal_catalog_arn,
status,
tags
FROM aws.iotfleetwise.model_manifests
WHERE region = 'us-east-1' AND data__Identifier = '<Name>';

INSERT example

Use the following StackQL query and manifest file to create a new model_manifest resource, using stack-deploy.

/*+ create */
INSERT INTO aws.iotfleetwise.model_manifests (
Name,
SignalCatalogArn,
region
)
SELECT
'{{ Name }}',
'{{ SignalCatalogArn }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.iotfleetwise.model_manifests
WHERE data__Identifier = '<Name>'
AND region = 'us-east-1';

Permissions

To operate on the model_manifests resource, the following permissions are required:

Create

iotfleetwise:CreateModelManifest,
iotfleetwise:GetModelManifest,
iotfleetwise:UpdateModelManifest,
iotfleetwise:ListModelManifestNodes,
iotfleetwise:ListTagsForResource,
iotfleetwise:TagResource

Read

iotfleetwise:GetModelManifest,
iotfleetwise:ListModelManifestNodes,
iotfleetwise:ListTagsForResource

Update

iotfleetwise:UpdateModelManifest,
iotfleetwise:GetModelManifest,
iotfleetwise:ListModelManifestNodes,
iotfleetwise:ListTagsForResource,
iotfleetwise:TagResource,
iotfleetwise:UntagResource

Delete

iotfleetwise:DeleteModelManifest,
iotfleetwise:GetModelManifest

List

iotfleetwise:ListModelManifests