interface CfnFlowTemplateProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTThingsGraph.CfnFlowTemplateProps |
Java | software.amazon.awscdk.services.iotthingsgraph.CfnFlowTemplateProps |
Python | aws_cdk.aws_iotthingsgraph.CfnFlowTemplateProps |
TypeScript | @aws-cdk/aws-iotthingsgraph » CfnFlowTemplateProps |
Properties for defining a CfnFlowTemplate.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotthingsgraph from '@aws-cdk/aws-iotthingsgraph';
const cfnFlowTemplateProps: iotthingsgraph.CfnFlowTemplateProps = {
definition: {
language: 'language',
text: 'text',
},
// the properties below are optional
compatibleNamespaceVersion: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| definition | Definition | IResolvable | AWS::IoTThingsGraph::FlowTemplate.Definition. |
| compatible | number | AWS::IoTThingsGraph::FlowTemplate.CompatibleNamespaceVersion. |
definition
Type:
Definition | IResolvable
AWS::IoTThingsGraph::FlowTemplate.Definition.
compatibleNamespaceVersion?
Type:
number
(optional)
AWS::IoTThingsGraph::FlowTemplate.CompatibleNamespaceVersion.

.NET
Java
Python
TypeScript