Class: Aws::DatabaseMigrationService::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::Filter
- Defined in:
- gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb
Overview
Identifies the name and value of a filter object. This filter is used
to limit the number and type of DMS objects that are returned for a
particular Describe*
call or similar operation. Filters are used as
an optional parameter for certain API operations.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the filter as specified for a
Describe*
or similar operation. -
#values ⇒ Array<String>
The filter value, which can specify one or more values used to narrow the returned results.
Instance Attribute Details
#name ⇒ String
The name of the filter as specified for a Describe*
or similar
operation.
5984 5985 5986 5987 5988 5989 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 5984 class Filter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The filter value, which can specify one or more values used to narrow the returned results.
5984 5985 5986 5987 5988 5989 |
# File 'gems/aws-sdk-databasemigrationservice/lib/aws-sdk-databasemigrationservice/types.rb', line 5984 class Filter < Struct.new( :name, :values) SENSITIVE = [] include Aws::Structure end |