Class: Aws::SWF::Types::ListDomainsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::ListDomainsInput
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum_page_size ⇒ Integer
The maximum number of results that are returned per call.
-
#next_page_token ⇒ String
If
NextPageTokenis returned there are more results available. -
#registration_status ⇒ String
Specifies the registration status of the domains to list.
-
#reverse_order ⇒ Boolean
When set to
true, returns the results in reverse order.
Instance Attribute Details
#maximum_page_size ⇒ Integer
The maximum number of results that are returned per call. Use
nextPageToken to obtain further pages of results.
3151 3152 3153 3154 3155 3156 3157 3158 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3151 class ListDomainsInput < Struct.new( :next_page_token, :registration_status, :maximum_page_size, :reverse_order) SENSITIVE = [] include Aws::Structure end |
#next_page_token ⇒ String
If NextPageToken is returned there are more results available. The
value of NextPageToken is a unique pagination token for each page.
Make the call again using the returned token to retrieve the next
page. Keep all other arguments unchanged. Each pagination token
expires after 24 hours. Using an expired pagination token will
return a 400 error: "Specified token has exceeded its maximum
lifetime".
The configured maximumPageSize determines how many results can be
returned in a single call.
3151 3152 3153 3154 3155 3156 3157 3158 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3151 class ListDomainsInput < Struct.new( :next_page_token, :registration_status, :maximum_page_size, :reverse_order) SENSITIVE = [] include Aws::Structure end |
#registration_status ⇒ String
Specifies the registration status of the domains to list.
3151 3152 3153 3154 3155 3156 3157 3158 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3151 class ListDomainsInput < Struct.new( :next_page_token, :registration_status, :maximum_page_size, :reverse_order) SENSITIVE = [] include Aws::Structure end |
#reverse_order ⇒ Boolean
When set to true, returns the results in reverse order. By
default, the results are returned in ascending alphabetical order by
name of the domains.
3151 3152 3153 3154 3155 3156 3157 3158 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3151 class ListDomainsInput < Struct.new( :next_page_token, :registration_status, :maximum_page_size, :reverse_order) SENSITIVE = [] include Aws::Structure end |