#[non_exhaustive]pub struct ListChannelsInputBuilder { /* private fields */ }
Expand description
A builder for ListChannelsInput
.
Implementations§
source§impl ListChannelsInputBuilder
impl ListChannelsInputBuilder
sourcepub fn channel_group_name(self, input: impl Into<String>) -> Self
pub fn channel_group_name(self, input: impl Into<String>) -> Self
The name that describes the channel group. The name is the primary identifier for the channel group, and must be unique for your account in the AWS Region.
This field is required.sourcepub fn set_channel_group_name(self, input: Option<String>) -> Self
pub fn set_channel_group_name(self, input: Option<String>) -> Self
The name that describes the channel group. The name is the primary identifier for the channel group, and must be unique for your account in the AWS Region.
sourcepub fn get_channel_group_name(&self) -> &Option<String>
pub fn get_channel_group_name(&self) -> &Option<String>
The name that describes the channel group. The name is the primary identifier for the channel group, and must be unique for your account in the AWS Region.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return in the response.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return in the response.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of results to return in the response.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The pagination token from the GET list request. Use the token to fetch the next page of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The pagination token from the GET list request. Use the token to fetch the next page of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The pagination token from the GET list request. Use the token to fetch the next page of results.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
source§impl PartialEq for ListChannelsInputBuilder
impl PartialEq for ListChannelsInputBuilder
source§fn eq(&self, other: &ListChannelsInputBuilder) -> bool
fn eq(&self, other: &ListChannelsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.