Class: Aws::Route53Domains::Types::SortCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::SortCondition
- Defined in:
- gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb
Overview
Information for sorting a list of domains.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
Field to be used for sorting the list of domains.
-
#sort_order ⇒ String
The sort order for a list of domains.
Instance Attribute Details
#name ⇒ String
Field to be used for sorting the list of domains. It can be either
the name or the expiration for a domain. Note that if
filterCondition
is used in the same ListDomains call, the
field used for sorting has to be the same as the field used for
filtering.
2632 2633 2634 2635 2636 2637 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 2632 class SortCondition < Struct.new( :name, :sort_order) SENSITIVE = [] include Aws::Structure end |
#sort_order ⇒ String
The sort order for a list of domains. Either ascending (ASC) or descending (DES).
2632 2633 2634 2635 2636 2637 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 2632 class SortCondition < Struct.new( :name, :sort_order) SENSITIVE = [] include Aws::Structure end |