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
Idawscc.iotfleetwise.decoder_manifests

Fields

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

For more information, see AWS::IoTFleetWise::DecoderManifest.

Methods

NameResourceAccessible byRequired Params
create_resourcedecoder_manifestsINSERTName, ModelManifestArn, region
delete_resourcedecoder_manifestsDELETEIdentifier, region
update_resourcedecoder_manifestsUPDATEIdentifier, PatchDocument, region
list_resourcesdecoder_manifests_list_onlySELECTregion
get_resourcedecoder_manifestsSELECTIdentifier, region

SELECT examples

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,
default_for_unmapped_signals,
tags
FROM awscc.iotfleetwise.decoder_manifests
WHERE
region = 'us-east-1' AND
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 awscc.iotfleetwise.decoder_manifests (
ModelManifestArn,
Name,
region
)
SELECT
'{{ model_manifest_arn }}',
'{{ name }}',
'{{ region }}';

UPDATE example

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

/*+ update */
UPDATE awscc.iotfleetwise.decoder_manifests
SET PatchDocument = string('{{ {
"Description": description,
"NetworkInterfaces": network_interfaces,
"SignalDecoders": signal_decoders,
"Status": status,
"DefaultForUnmappedSignals": default_for_unmapped_signals,
"Tags": tags
} | generate_patch_document }}')
WHERE
region = '{{ region }}' AND
Identifier = '{{ name }}';

DELETE example

/*+ delete */
DELETE FROM awscc.iotfleetwise.decoder_manifests
WHERE
Identifier = '{{ name }}' AND
region = 'us-east-1';

Permissions

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

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