Struct aws_sdk_swf::input::ListDomainsInput [−][src]
#[non_exhaustive]pub struct ListDomainsInput {
pub next_page_token: Option<String>,
pub registration_status: Option<RegistrationStatus>,
pub maximum_page_size: i32,
pub reverse_order: bool,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.next_page_token: Option<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 60 seconds. 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.
registration_status: Option<RegistrationStatus>Specifies the registration status of the domains to list.
maximum_page_size: i32The maximum number of results that are returned per call.
Use nextPageToken to obtain further pages of results.
reverse_order: boolWhen set to true, returns the results in reverse order. By default, the
results are returned in ascending alphabetical order by name of the
domains.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDomains, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDomains, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListDomains>
Creates a new builder-style object to manufacture ListDomainsInput
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ListDomainsInput
impl Send for ListDomainsInput
impl Sync for ListDomainsInput
impl Unpin for ListDomainsInput
impl UnwindSafe for ListDomainsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more