#[non_exhaustive]pub struct ListDomainsInputBuilder { /* private fields */ }
Expand description
A builder for ListDomainsInput
.
Implementations§
source§impl ListDomainsInputBuilder
impl ListDomainsInputBuilder
sourcepub fn next_page_token(self, input: impl Into<String>) -> Self
pub fn next_page_token(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_next_page_token(self, input: Option<String>) -> Self
pub fn set_next_page_token(self, input: Option<String>) -> Self
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.
sourcepub fn get_next_page_token(&self) -> &Option<String>
pub fn get_next_page_token(&self) -> &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 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.
sourcepub fn registration_status(self, input: RegistrationStatus) -> Self
pub fn registration_status(self, input: RegistrationStatus) -> Self
Specifies the registration status of the domains to list.
This field is required.sourcepub fn set_registration_status(self, input: Option<RegistrationStatus>) -> Self
pub fn set_registration_status(self, input: Option<RegistrationStatus>) -> Self
Specifies the registration status of the domains to list.
sourcepub fn get_registration_status(&self) -> &Option<RegistrationStatus>
pub fn get_registration_status(&self) -> &Option<RegistrationStatus>
Specifies the registration status of the domains to list.
sourcepub fn maximum_page_size(self, input: i32) -> Self
pub fn maximum_page_size(self, input: i32) -> Self
The maximum number of results that are returned per call. Use nextPageToken
to obtain further pages of results.
sourcepub fn set_maximum_page_size(self, input: Option<i32>) -> Self
pub fn set_maximum_page_size(self, input: Option<i32>) -> Self
The maximum number of results that are returned per call. Use nextPageToken
to obtain further pages of results.
sourcepub fn get_maximum_page_size(&self) -> &Option<i32>
pub fn get_maximum_page_size(&self) -> &Option<i32>
The maximum number of results that are returned per call. Use nextPageToken
to obtain further pages of results.
sourcepub fn reverse_order(self, input: bool) -> Self
pub fn reverse_order(self, input: bool) -> Self
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.
sourcepub fn set_reverse_order(self, input: Option<bool>) -> Self
pub fn set_reverse_order(self, input: Option<bool>) -> Self
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.
sourcepub fn get_reverse_order(&self) -> &Option<bool>
pub fn get_reverse_order(&self) -> &Option<bool>
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.
sourcepub fn build(self) -> Result<ListDomainsInput, BuildError>
pub fn build(self) -> Result<ListDomainsInput, BuildError>
Consumes the builder and constructs a ListDomainsInput
.
source§impl ListDomainsInputBuilder
impl ListDomainsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListDomainsOutput, SdkError<ListDomainsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListDomainsOutput, SdkError<ListDomainsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListDomainsInputBuilder
impl Clone for ListDomainsInputBuilder
source§fn clone(&self) -> ListDomainsInputBuilder
fn clone(&self) -> ListDomainsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListDomainsInputBuilder
impl Debug for ListDomainsInputBuilder
source§impl Default for ListDomainsInputBuilder
impl Default for ListDomainsInputBuilder
source§fn default() -> ListDomainsInputBuilder
fn default() -> ListDomainsInputBuilder
source§impl PartialEq for ListDomainsInputBuilder
impl PartialEq for ListDomainsInputBuilder
source§fn eq(&self, other: &ListDomainsInputBuilder) -> bool
fn eq(&self, other: &ListDomainsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.