You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::ServiceDiscovery::Types::ServiceFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceDiscovery::Types::ServiceFilter
- Defined in:
- (unknown)
Overview
When passing ServiceFilter as input to an Aws::Client method, you can use a vanilla Hash:
{
name: "NAMESPACE_ID", # required, accepts NAMESPACE_ID
values: ["FilterValue"], # required
condition: "EQ", # accepts EQ, IN, BETWEEN
}
A complex type that lets you specify the namespaces that you want to list services for.
Instance Attribute Summary collapse
-
#condition ⇒ String
The operator that you want to use to determine whether a service is returned by
ListServices
. -
#name ⇒ String
Specify
NAMESPACE_ID
. -
#values ⇒ Array<String>
The values that are applicable to the value that you specify for
Condition
to filter the list of services.
Instance Attribute Details
#condition ⇒ String
The operator that you want to use to determine whether a service is
returned by ListServices
. Valid values for Condition
include the
following:
EQ
: When you specifyEQ
, specify one namespace ID forValues
.EQ
is the default condition and can be omitted.IN
: When you specifyIN
, specify a list of the IDs for the namespaces that you wantListServices
to return a list of services for.BETWEEN
: Not applicable.Possible values:
- EQ
- IN
- BETWEEN
#name ⇒ String
Specify NAMESPACE_ID
.
Possible values:
- NAMESPACE_ID
#values ⇒ Array<String>
The values that are applicable to the value that you specify for
Condition
to filter the list of services.