Class: Aws::IoTThingsGraph::Types::UpdateFlowTemplateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::UpdateFlowTemplateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotthingsgraph/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compatible_namespace_version ⇒ Integer
The version of the user’s namespace.
-
#definition ⇒ Types::DefinitionDocument
The ‘DefinitionDocument` that contains the updated workflow definition.
-
#id ⇒ String
The ID of the workflow to be updated.
Instance Attribute Details
#compatible_namespace_version ⇒ Integer
The version of the user’s namespace.
If no value is specified, the latest version is used by default. Use the ‘GetFlowTemplateRevisions` if you want to find earlier revisions of the flow to update.
1606 1607 1608 1609 1610 1611 1612 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1606 class UpdateFlowTemplateRequest < Struct.new( :id, :definition, :compatible_namespace_version) SENSITIVE = [] include Aws::Structure end |
#definition ⇒ Types::DefinitionDocument
The ‘DefinitionDocument` that contains the updated workflow definition.
1606 1607 1608 1609 1610 1611 1612 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1606 class UpdateFlowTemplateRequest < Struct.new( :id, :definition, :compatible_namespace_version) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID of the workflow to be updated.
The ID should be in the following format.
‘urn:tdm:REGION/ACCOUNT ID/default:workflow:WORKFLOWNAME`
1606 1607 1608 1609 1610 1611 1612 |
# File 'lib/aws-sdk-iotthingsgraph/types.rb', line 1606 class UpdateFlowTemplateRequest < Struct.new( :id, :definition, :compatible_namespace_version) SENSITIVE = [] include Aws::Structure end |