Class: Aws::IoTThingsGraph::Types::DeleteFlowTemplateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::DeleteFlowTemplateRequest
- Defined in:
- gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb
Overview
Note:
When making an API call, you may pass DeleteFlowTemplateRequest data as a hash:
{
id: "Urn", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the workflow to be deleted.
Instance Attribute Details
#id ⇒ String
The ID of the workflow to be deleted.
The ID should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:workflow:WORKFLOWNAME
252 253 254 255 256 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 252 class DeleteFlowTemplateRequest < Struct.new( :id) SENSITIVE = [] include Aws::Structure end |