Class: Aws::IoTThingsGraph::Types::FlowTemplateFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::FlowTemplateFilter
- Defined in:
- gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb
Overview
Note:
When making an API call, you may pass FlowTemplateFilter data as a hash:
{
name: "DEVICE_MODEL_ID", # required, accepts DEVICE_MODEL_ID
value: ["FlowTemplateFilterValue"], # required
}
An object that filters a workflow search.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the search filter field.
-
#value ⇒ Array<String>
An array of string values for the search filter field.
Instance Attribute Details
#name ⇒ String
The name of the search filter field.
671 672 673 674 675 676 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 671 class FlowTemplateFilter < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Array<String>
An array of string values for the search filter field. Multiple values function as AND criteria in the search.
671 672 673 674 675 676 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 671 class FlowTemplateFilter < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |