Struct aws_sdk_datazone::operation::list_domains::ListDomainsInput
source · #[non_exhaustive]pub struct ListDomainsInput {
pub status: Option<DomainStatus>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
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.status: Option<DomainStatus>
The status of the data source.
max_results: Option<i32>
The maximum number of domains to return in a single call to ListDomains
. When the number of domains to be listed is greater than the value of MaxResults
, the response contains a NextToken
value that you can use in a subsequent call to ListDomains
to list the next set of domains.
next_token: Option<String>
When the number of domains is greater than the default value for the MaxResults
parameter, or if you explicitly specify a value for MaxResults
that is less than the number of domains, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListDomains
to list the next set of domains.
Implementations§
source§impl ListDomainsInput
impl ListDomainsInput
sourcepub fn status(&self) -> Option<&DomainStatus>
pub fn status(&self) -> Option<&DomainStatus>
The status of the data source.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of domains to return in a single call to ListDomains
. When the number of domains to be listed is greater than the value of MaxResults
, the response contains a NextToken
value that you can use in a subsequent call to ListDomains
to list the next set of domains.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
When the number of domains is greater than the default value for the MaxResults
parameter, or if you explicitly specify a value for MaxResults
that is less than the number of domains, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListDomains
to list the next set of domains.
source§impl ListDomainsInput
impl ListDomainsInput
sourcepub fn builder() -> ListDomainsInputBuilder
pub fn builder() -> ListDomainsInputBuilder
Creates a new builder-style object to manufacture ListDomainsInput
.
Trait Implementations§
source§impl Clone for ListDomainsInput
impl Clone for ListDomainsInput
source§fn clone(&self) -> ListDomainsInput
fn clone(&self) -> ListDomainsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListDomainsInput
impl Debug for ListDomainsInput
source§impl PartialEq for ListDomainsInput
impl PartialEq for ListDomainsInput
source§fn eq(&self, other: &ListDomainsInput) -> bool
fn eq(&self, other: &ListDomainsInput) -> bool
self
and other
values to be equal, and is used
by ==
.