ModelManifestReference
- class aws_cdk.aws_iotfleetwise.ModelManifestReference(*, model_manifest_arn, model_manifest_name)
Bases:
object
A reference to a ModelManifest resource.
- Parameters:
model_manifest_arn (
str
) – The ARN of the ModelManifest resource.model_manifest_name (
str
) – The Name of the ModelManifest 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 model_manifest_reference = iotfleetwise.ModelManifestReference( model_manifest_arn="modelManifestArn", model_manifest_name="modelManifestName" )
Attributes
- model_manifest_arn
The ARN of the ModelManifest resource.
- model_manifest_name
The Name of the ModelManifest resource.