Documentation
¶
Index ¶
- func CfnFlowTemplate_CFN_RESOURCE_TYPE_NAME() *string
- func CfnFlowTemplate_IsCfnElement(x interface{}) *bool
- func CfnFlowTemplate_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnFlowTemplate_IsConstruct(x interface{}) *bool
- func NewCfnFlowTemplate_Override(c CfnFlowTemplate, scope constructs.Construct, id *string, ...)
- type CfnFlowTemplate
- type CfnFlowTemplateProps
- type CfnFlowTemplate_DefinitionDocumentProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnFlowTemplate_CFN_RESOURCE_TYPE_NAME ¶
func CfnFlowTemplate_CFN_RESOURCE_TYPE_NAME() *string
func CfnFlowTemplate_IsCfnElement ¶
func CfnFlowTemplate_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnFlowTemplate_IsCfnResource ¶
func CfnFlowTemplate_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnFlowTemplate_IsConstruct ¶
func CfnFlowTemplate_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func NewCfnFlowTemplate_Override ¶
func NewCfnFlowTemplate_Override(c CfnFlowTemplate, scope constructs.Construct, id *string, props *CfnFlowTemplateProps)
Create a new `AWS::IoTThingsGraph::FlowTemplate`.
Types ¶
type CfnFlowTemplate ¶
type CfnFlowTemplate interface {
awscdk.CfnResource
awscdk.IInspectable
CfnOptions() awscdk.ICfnResourceOptions
CfnProperties() *map[string]interface{}
CfnResourceType() *string
CompatibleNamespaceVersion() *float64
SetCompatibleNamespaceVersion(val *float64)
CreationStack() *[]*string
Definition() interface{}
SetDefinition(val interface{})
LogicalId() *string
Node() constructs.Node
Ref() *string
Stack() awscdk.Stack
UpdatedProperites() *map[string]interface{}
AddDeletionOverride(path *string)
AddDependsOn(target awscdk.CfnResource)
AddMetadata(key *string, value interface{})
AddOverride(path *string, value interface{})
AddPropertyDeletionOverride(propertyPath *string)
AddPropertyOverride(propertyPath *string, value interface{})
ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions)
GetAtt(attributeName *string) awscdk.Reference
GetMetadata(key *string) interface{}
Inspect(inspector awscdk.TreeInspector)
OverrideLogicalId(newLogicalId *string)
RenderProperties(props *map[string]interface{}) *map[string]interface{}
ShouldSynthesize() *bool
ToString() *string
ValidateProperties(_properties interface{})
}
A CloudFormation `AWS::IoTThingsGraph::FlowTemplate`.
TODO: EXAMPLE
func NewCfnFlowTemplate ¶
func NewCfnFlowTemplate(scope constructs.Construct, id *string, props *CfnFlowTemplateProps) CfnFlowTemplate
Create a new `AWS::IoTThingsGraph::FlowTemplate`.
type CfnFlowTemplateProps ¶
type CfnFlowTemplateProps struct {
// `AWS::IoTThingsGraph::FlowTemplate.CompatibleNamespaceVersion`.
CompatibleNamespaceVersion *float64 `json:"compatibleNamespaceVersion"`
// `AWS::IoTThingsGraph::FlowTemplate.Definition`.
Definition interface{} `json:"definition"`
}
Properties for defining a `AWS::IoTThingsGraph::FlowTemplate`.
TODO: EXAMPLE
type CfnFlowTemplate_DefinitionDocumentProperty ¶
type CfnFlowTemplate_DefinitionDocumentProperty struct {
// `CfnFlowTemplate.DefinitionDocumentProperty.Language`.
Language *string `json:"language"`
// `CfnFlowTemplate.DefinitionDocumentProperty.Text`.
Text *string `json:"text"`
}
TODO: EXAMPLE