Class: Aws::Route53Domains::Types::ListDomainsRequest

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

Overview

The ListDomains request includes the following elements.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#filter_conditionsArray<Types::FilterCondition>

A complex type that contains information about the filters applied during the ‘ListDomains` request. The filter conditions can include domain name and domain expiration.

Returns:



1890
1891
1892
1893
1894
1895
1896
1897
# File 'lib/aws-sdk-route53domains/types.rb', line 1890

class ListDomainsRequest < Struct.new(
  :filter_conditions,
  :sort_condition,
  :marker,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end

#markerString

For an initial request for a list of domains, omit this element. If the number of domains that are associated with the current Amazon Web Services account is greater than the value that you specified for ‘MaxItems`, you can use `Marker` to return additional domains. Get the value of `NextPageMarker` from the previous response, and submit another request that includes the value of `NextPageMarker` in the `Marker` element.

Constraints: The marker must match the value specified in the previous request.

Returns:

  • (String)


1890
1891
1892
1893
1894
1895
1896
1897
# File 'lib/aws-sdk-route53domains/types.rb', line 1890

class ListDomainsRequest < Struct.new(
  :filter_conditions,
  :sort_condition,
  :marker,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end

#max_itemsInteger

Number of domains to be returned.

Default: 20

Returns:

  • (Integer)


1890
1891
1892
1893
1894
1895
1896
1897
# File 'lib/aws-sdk-route53domains/types.rb', line 1890

class ListDomainsRequest < Struct.new(
  :filter_conditions,
  :sort_condition,
  :marker,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end

#sort_conditionTypes::SortCondition

A complex type that contains information about the requested ordering of domains in the returned list.



1890
1891
1892
1893
1894
1895
1896
1897
# File 'lib/aws-sdk-route53domains/types.rb', line 1890

class ListDomainsRequest < Struct.new(
  :filter_conditions,
  :sort_condition,
  :marker,
  :max_items)
  SENSITIVE = []
  include Aws::Structure
end