#[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
impl StructuralPartialEq for ListDomainsInputBuilder
Auto Trait Implementations§
impl Freeze for ListDomainsInputBuilder
impl RefUnwindSafe for ListDomainsInputBuilder
impl Send for ListDomainsInputBuilder
impl Sync for ListDomainsInputBuilder
impl Unpin for ListDomainsInputBuilder
impl UnwindSafe for ListDomainsInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more