CfnFlowTemplateProps
- class aws_cdk.aws_iotthingsgraph.CfnFlowTemplateProps(*, definition, compatible_namespace_version=None)
Bases:
object
Properties for defining a
CfnFlowTemplate
.- Parameters:
definition (
Union
[DefinitionDocumentProperty
,Dict
[str
,Any
],IResolvable
]) –AWS::IoTThingsGraph::FlowTemplate.Definition
.compatible_namespace_version (
Union
[int
,float
,None
]) –AWS::IoTThingsGraph::FlowTemplate.CompatibleNamespaceVersion
.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_iotthingsgraph as iotthingsgraph cfn_flow_template_props = iotthingsgraph.CfnFlowTemplateProps( definition=iotthingsgraph.CfnFlowTemplate.DefinitionDocumentProperty( language="language", text="text" ), # the properties below are optional compatible_namespace_version=123 )
Attributes
- compatible_namespace_version
AWS::IoTThingsGraph::FlowTemplate.CompatibleNamespaceVersion
.
- definition
AWS::IoTThingsGraph::FlowTemplate.Definition
.