#[non_exhaustive]pub struct ListChannelsInputBuilder { /* private fields */ }
Expand description
A builder for ListChannelsInput
.
Implementations§
source§impl ListChannelsInputBuilder
impl ListChannelsInputBuilder
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
Upper bound on number of records to return.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
Upper bound on number of records to return.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
Upper bound on number of records to return.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token used to resume pagination from the end of a previous request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token used to resume pagination from the end of a previous request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token used to resume pagination from the end of a previous request.
sourcepub fn build(self) -> Result<ListChannelsInput, BuildError>
pub fn build(self) -> Result<ListChannelsInput, BuildError>
Consumes the builder and constructs a ListChannelsInput
.
source§impl ListChannelsInputBuilder
impl ListChannelsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListChannelsOutput, SdkError<ListChannelsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListChannelsOutput, SdkError<ListChannelsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListChannelsInputBuilder
impl Clone for ListChannelsInputBuilder
source§fn clone(&self) -> ListChannelsInputBuilder
fn clone(&self) -> ListChannelsInputBuilder
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 Debug for ListChannelsInputBuilder
impl Debug for ListChannelsInputBuilder
source§impl Default for ListChannelsInputBuilder
impl Default for ListChannelsInputBuilder
source§fn default() -> ListChannelsInputBuilder
fn default() -> ListChannelsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListChannelsInputBuilder
impl PartialEq for ListChannelsInputBuilder
source§fn eq(&self, other: &ListChannelsInputBuilder) -> bool
fn eq(&self, other: &ListChannelsInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListChannelsInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ListChannelsInputBuilder
impl Send for ListChannelsInputBuilder
impl Sync for ListChannelsInputBuilder
impl Unpin for ListChannelsInputBuilder
impl UnwindSafe for ListChannelsInputBuilder
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> 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>
Creates a shared type from an unshared type.