Skip to main content

decoder_manifests

Creates, updates, deletes or gets a decoder_manifest resource or lists decoder_manifests in a region

Overview

Namedecoder_manifests
TypeResource
DescriptionDefinition of AWS::IoTFleetWise::DecoderManifest Resource Type
Idaws.iotfleetwise.decoder_manifests

Fields

NameDatatypeDescription
arnstring
creation_timestring
descriptionstring
last_modification_timestring
model_manifest_arnstring
namestring
network_interfacesarray
signal_decodersarray
statusstring
tagsarray
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTName, ModelManifestArn, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all decoder_manifests in a region.

SELECT
region,
arn,
creation_time,
description,
last_modification_time,
model_manifest_arn,
name,
network_interfaces,
signal_decoders,
status,
tags
FROM aws.iotfleetwise.decoder_manifests
WHERE region = 'us-east-1';

Gets all properties from an individual decoder_manifest.

SELECT
region,
arn,
creation_time,
description,
last_modification_time,
model_manifest_arn,
name,
network_interfaces,
signal_decoders,
status,
tags
FROM aws.iotfleetwise.decoder_manifests
WHERE region = 'us-east-1' AND data__Identifier = '<Name>';

INSERT example

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

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

DELETE example

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

Permissions

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

Create

iotfleetwise:CreateDecoderManifest,
iotfleetwise:GetDecoderManifest,
iotfleetwise:UpdateDecoderManifest,
iotfleetwise:ListDecoderManifestSignals,
iotfleetwise:ListDecoderManifestNetworkInterfaces,
iotfleetwise:ListTagsForResource,
iotfleetwise:TagResource

Read

iotfleetwise:GetDecoderManifest,
iotfleetwise:ListDecoderManifestSignals,
iotfleetwise:ListDecoderManifestNetworkInterfaces,
iotfleetwise:ListTagsForResource

Update

iotfleetwise:UpdateDecoderManifest,
iotfleetwise:GetDecoderManifest,
iotfleetwise:ListDecoderManifestSignals,
iotfleetwise:ListDecoderManifestNetworkInterfaces,
iotfleetwise:ListTagsForResource,
iotfleetwise:TagResource,
iotfleetwise:UntagResource

Delete

iotfleetwise:DeleteDecoderManifest,
iotfleetwise:GetDecoderManifest

List

iotfleetwise:ListDecoderManifests