Class: Aws::ServiceDiscovery::Types::ServiceFilter

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

Overview

A complex type that lets you specify the namespaces that you want to list services for.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#conditionString

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 specify `EQ`, specify one namespace ID for `Values`. `EQ` is the default condition and can be omitted.

^

Returns:

  • (String)


2928
2929
2930
2931
2932
2933
2934
# File 'lib/aws-sdk-servicediscovery/types.rb', line 2928

class ServiceFilter < Struct.new(
  :name,
  :values,
  :condition)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

Specify ‘NAMESPACE_ID`.

Returns:

  • (String)


2928
2929
2930
2931
2932
2933
2934
# File 'lib/aws-sdk-servicediscovery/types.rb', line 2928

class ServiceFilter < Struct.new(
  :name,
  :values,
  :condition)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

The values that are applicable to the value that you specify for ‘Condition` to filter the list of services.

Returns:

  • (Array<String>)


2928
2929
2930
2931
2932
2933
2934
# File 'lib/aws-sdk-servicediscovery/types.rb', line 2928

class ServiceFilter < Struct.new(
  :name,
  :values,
  :condition)
  SENSITIVE = []
  include Aws::Structure
end