StateTemplateReference
- class aws_cdk.aws_iotfleetwise.StateTemplateReference(*, state_template_arn, state_template_name)
Bases:
object
A reference to a StateTemplate resource.
- Parameters:
state_template_arn (
str
) – The ARN of the StateTemplate resource.state_template_name (
str
) – The Name of the StateTemplate 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 state_template_reference = iotfleetwise.StateTemplateReference( state_template_arn="stateTemplateArn", state_template_name="stateTemplateName" )
Attributes
- state_template_arn
The ARN of the StateTemplate resource.
- state_template_name
The Name of the StateTemplate resource.