Class: Aws::Route53Domains::Types::SortCondition

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

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.

Returns:

  • (String)


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_orderString

The sort order for a list of domains. Either ascending (ASC) or descending (DES).

Returns:

  • (String)


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