Struct aws_sdk_iot::operation::list_domain_configurations::builders::ListDomainConfigurationsInputBuilder
source · #[non_exhaustive]pub struct ListDomainConfigurationsInputBuilder { /* private fields */ }Expand description
A builder for ListDomainConfigurationsInput.
Implementations§
source§impl ListDomainConfigurationsInputBuilder
impl ListDomainConfigurationsInputBuilder
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
The marker for the next set of results.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
The marker for the next set of results.
sourcepub fn set_page_size(self, input: Option<i32>) -> Self
pub fn set_page_size(self, input: Option<i32>) -> Self
The result page size.
sourcepub fn get_page_size(&self) -> &Option<i32>
pub fn get_page_size(&self) -> &Option<i32>
The result page size.
sourcepub fn service_type(self, input: ServiceType) -> Self
pub fn service_type(self, input: ServiceType) -> Self
The type of service delivered by the endpoint.
sourcepub fn set_service_type(self, input: Option<ServiceType>) -> Self
pub fn set_service_type(self, input: Option<ServiceType>) -> Self
The type of service delivered by the endpoint.
sourcepub fn get_service_type(&self) -> &Option<ServiceType>
pub fn get_service_type(&self) -> &Option<ServiceType>
The type of service delivered by the endpoint.
sourcepub fn build(self) -> Result<ListDomainConfigurationsInput, BuildError>
pub fn build(self) -> Result<ListDomainConfigurationsInput, BuildError>
Consumes the builder and constructs a ListDomainConfigurationsInput.
source§impl ListDomainConfigurationsInputBuilder
impl ListDomainConfigurationsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListDomainConfigurationsOutput, SdkError<ListDomainConfigurationsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListDomainConfigurationsOutput, SdkError<ListDomainConfigurationsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListDomainConfigurationsInputBuilder
impl Clone for ListDomainConfigurationsInputBuilder
source§fn clone(&self) -> ListDomainConfigurationsInputBuilder
fn clone(&self) -> ListDomainConfigurationsInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for ListDomainConfigurationsInputBuilder
impl Default for ListDomainConfigurationsInputBuilder
source§fn default() -> ListDomainConfigurationsInputBuilder
fn default() -> ListDomainConfigurationsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListDomainConfigurationsInputBuilder
impl PartialEq for ListDomainConfigurationsInputBuilder
source§fn eq(&self, other: &ListDomainConfigurationsInputBuilder) -> bool
fn eq(&self, other: &ListDomainConfigurationsInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListDomainConfigurationsInputBuilder
Auto Trait Implementations§
impl Freeze for ListDomainConfigurationsInputBuilder
impl RefUnwindSafe for ListDomainConfigurationsInputBuilder
impl Send for ListDomainConfigurationsInputBuilder
impl Sync for ListDomainConfigurationsInputBuilder
impl Unpin for ListDomainConfigurationsInputBuilder
impl UnwindSafe for ListDomainConfigurationsInputBuilder
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.