Class: Aws::ResourceGroups::Types::GroupFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ResourceGroups::Types::GroupFilter
- Defined in:
- gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb
Overview
Note:
When making an API call, you may pass GroupFilter data as a hash:
{
name: "resource-type", # required, accepts resource-type, configuration-type
values: ["GroupFilterValue"], # required
}
A filter collection that you can use to restrict the results from a
List
operation to only those you want to include.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the filter.
-
#values ⇒ Array<String>
One or more filter values.
Instance Attribute Details
#name ⇒ String
The name of the filter. Filter names are case-sensitive.
576 577 578 579 580 581 |
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 576 class GroupFilter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
One or more filter values. Allowed filter values vary by group filter name, and are case-sensitive.
576 577 578 579 580 581 |
# File 'gems/aws-sdk-resourcegroups/lib/aws-sdk-resourcegroups/types.rb', line 576 class GroupFilter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |