Class: Aws::IoTThingsGraph::Types::SystemTemplateFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::SystemTemplateFilter
- Defined in:
- gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb
Overview
Note:
When making an API call, you may pass SystemTemplateFilter data as a hash:
{
name: "FLOW_TEMPLATE_ID", # required, accepts FLOW_TEMPLATE_ID
value: ["SystemTemplateFilterValue"], # required
}
An object that filters a system search.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the system 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 system search filter field.
1751 1752 1753 1754 1755 1756 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1751 class SystemTemplateFilter < 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.
1751 1752 1753 1754 1755 1756 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1751 class SystemTemplateFilter < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |