DecoderManifestReference
- class aws_cdk.aws_iotfleetwise.DecoderManifestReference(*, decoder_manifest_arn, decoder_manifest_name)
Bases:
object
A reference to a DecoderManifest resource.
- Parameters:
decoder_manifest_arn (
str
) – The ARN of the DecoderManifest resource.decoder_manifest_name (
str
) – The Name of the DecoderManifest resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_iotfleetwise as iotfleetwise decoder_manifest_reference = iotfleetwise.DecoderManifestReference( decoder_manifest_arn="decoderManifestArn", decoder_manifest_name="decoderManifestName" )
Attributes
- decoder_manifest_arn
The ARN of the DecoderManifest resource.
- decoder_manifest_name
The Name of the DecoderManifest resource.