Class: Aws::RDS::Types::Filter

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Note:

When making an API call, you may pass Filter data as a hash:

{
  name: "String", # required
  values: ["String"], # required
}

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

  • DescribePendingMaintenanceActions

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the filter. Filter names are case-sensitive.

Returns:

  • (String)


9266
9267
9268
9269
9270
# File 'lib/aws-sdk-rds/types.rb', line 9266

class Filter < Struct.new(
  :name,
  :values)
  include Aws::Structure
end

#valuesArray<String>

One or more filter values. Filter values are case-sensitive.

Returns:

  • (Array<String>)


9266
9267
9268
9269
9270
# File 'lib/aws-sdk-rds/types.rb', line 9266

class Filter < Struct.new(
  :name,
  :values)
  include Aws::Structure
end