Class: Aws::Route53Domains::Types::FilterCondition

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb

Overview

Information for the filtering of a list of domains returned by ListDomains.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

Name of the field which should be used for filtering the list of domains.

Returns:

  • (String)


1445
1446
1447
1448
1449
1450
1451
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 1445

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

#operatorString

The operator values for filtering domain names. The values can be:

  • LE: Less than, or equal to

  • GE: Greater than, or equal to

  • BEGINS_WITH: Begins with

Returns:

  • (String)


1445
1446
1447
1448
1449
1450
1451
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 1445

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

#valuesArray<String>

An array of strings presenting values to compare. Only 1 item in the list is currently supported.

Returns:

  • (Array<String>)


1445
1446
1447
1448
1449
1450
1451
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 1445

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