Struct aws_sdk_swf::output::ListDomainsOutput
source · [−]#[non_exhaustive]pub struct ListDomainsOutput {
pub domain_infos: Option<Vec<DomainInfo>>,
pub next_page_token: Option<String>,
}
Expand description
Contains a paginated collection of DomainInfo structures.
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.domain_infos: Option<Vec<DomainInfo>>
A list of DomainInfo structures.
next_page_token: Option<String>
If a NextPageToken
was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in nextPageToken
. Keep all other arguments unchanged.
The configured maximumPageSize
determines how many results can be returned in a single call.
Implementations
A list of DomainInfo structures.
If a NextPageToken
was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in nextPageToken
. Keep all other arguments unchanged.
The configured maximumPageSize
determines how many results can be returned in a single call.
Creates a new builder-style object to manufacture ListDomainsOutput
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 ListDomainsOutput
impl Send for ListDomainsOutput
impl Sync for ListDomainsOutput
impl Unpin for ListDomainsOutput
impl UnwindSafe for ListDomainsOutput
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