Class: Aws::RDS::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::Filter
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
A filter name and value pair that is used to return a more specific list of results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as IDs. The filters supported by a describe operation are documented with the describe operation.
<note markdown=“1”> Currently, wildcards are not supported in filters.
</note>
The following actions can be filtered:
-
‘DescribeDBClusterBacktracks`
-
‘DescribeDBClusterEndpoints`
-
‘DescribeDBClusters`
-
‘DescribeDBInstances`
-
‘DescribeDBRecommendations`
-
‘DescribeDBShardGroups`
-
‘DescribePendingMaintenanceActions`
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.
16346 16347 16348 16349 16350 16351 |
# File 'lib/aws-sdk-rds/types.rb', line 16346 class Filter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
One or more filter values. Filter values are case-sensitive.
16346 16347 16348 16349 16350 16351 |
# File 'lib/aws-sdk-rds/types.rb', line 16346 class Filter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |