Class: Aws::ApplicationSignals::Types::AttributeFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::AttributeFilter
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
A structure that defines a filter for narrowing down results based on specific attribute values. This can be used to filter services by platform, environment, or other service characteristics.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute_filter_name ⇒ String
The name of the attribute to filter by, such as
Platform
,Environment
, orBusinessUnit
. -
#attribute_filter_values ⇒ Array<String>
An array of values to match for the specified attribute.
Instance Attribute Details
#attribute_filter_name ⇒ String
The name of the attribute to filter by, such as Platform
,
Environment
, or BusinessUnit
.
43 44 45 46 47 48 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 43 class AttributeFilter < Struct.new( :attribute_filter_name, :attribute_filter_values) SENSITIVE = [] include Aws::Structure end |
#attribute_filter_values ⇒ Array<String>
An array of values to match for the specified attribute. Services that have any of these values for the attribute will be included in the results.
43 44 45 46 47 48 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 43 class AttributeFilter < Struct.new( :attribute_filter_name, :attribute_filter_values) SENSITIVE = [] include Aws::Structure end |