Class: Aws::Route53Domains::Types::FilterCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::FilterCondition
- Defined in:
- gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb
Overview
Note:
When making an API call, you may pass FilterCondition data as a hash:
{
name: "DomainName", # required, accepts DomainName, Expiry
operator: "LE", # required, accepts LE, GE, BEGINS_WITH
values: ["Value"], # required
}
Information for the filtering of a list of domains returned by ListDomains.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the field which should be used for filtering the list of domains.
-
#operator ⇒ String
The operator values for filtering domain names.
-
#values ⇒ Array<String>
An array of strings presenting values to compare.
Instance Attribute Details
#name ⇒ String
Name of the field which should be used for filtering the list of domains.
1317 1318 1319 1320 1321 1322 1323 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 1317 class FilterCondition < Struct.new( :name, :operator, :values) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The operator values for filtering domain names. The values can be:
LE
: Less than, or equal toGE
: Greater than, or equal toBEGINS_WITH
: Begins with
1317 1318 1319 1320 1321 1322 1323 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 1317 class FilterCondition < Struct.new( :name, :operator, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
An array of strings presenting values to compare. Only 1 item in the list is currently supported.
1317 1318 1319 1320 1321 1322 1323 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 1317 class FilterCondition < Struct.new( :name, :operator, :values) SENSITIVE = [] include Aws::Structure end |