ModelManifestReference
- class aws_cdk.interfaces.aws_iotfleetwise.ModelManifestReference(*, model_manifest_arn, model_manifest_name)
Bases:
objectA 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.interfaces import aws_iotfleetwise as interfaces_iotfleetwise model_manifest_reference = interfaces_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.