Struct aws_sdk_chime::input::ListChannelMembershipsInput
source · [−]#[non_exhaustive]pub struct ListChannelMembershipsInput { /* private fields */ }Implementations
sourceimpl ListChannelMembershipsInput
impl ListChannelMembershipsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListChannelMemberships, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListChannelMemberships, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListChannelMemberships>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListChannelMembershipsInput.
sourceimpl ListChannelMembershipsInput
impl ListChannelMembershipsInput
sourcepub fn channel_arn(&self) -> Option<&str>
pub fn channel_arn(&self) -> Option<&str>
The maximum number of channel memberships that you want returned.
sourcepub fn type(&self) -> Option<&ChannelMembershipType>
pub fn type(&self) -> Option<&ChannelMembershipType>
The membership type of a user, DEFAULT or HIDDEN. Default members are always returned as part of ListChannelMemberships. Hidden members are only returned if the type filter in ListChannelMemberships equals HIDDEN. Otherwise hidden members are not returned.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of channel memberships that you want returned.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token passed by previous API calls until all requested channel memberships are returned.
sourcepub fn chime_bearer(&self) -> Option<&str>
pub fn chime_bearer(&self) -> Option<&str>
The AppInstanceUserArn of the user that makes the API call.
Trait Implementations
sourceimpl Clone for ListChannelMembershipsInput
impl Clone for ListChannelMembershipsInput
sourcefn clone(&self) -> ListChannelMembershipsInput
fn clone(&self) -> ListChannelMembershipsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ListChannelMembershipsInput
impl Debug for ListChannelMembershipsInput
sourceimpl PartialEq<ListChannelMembershipsInput> for ListChannelMembershipsInput
impl PartialEq<ListChannelMembershipsInput> for ListChannelMembershipsInput
sourcefn eq(&self, other: &ListChannelMembershipsInput) -> bool
fn eq(&self, other: &ListChannelMembershipsInput) -> bool
impl StructuralPartialEq for ListChannelMembershipsInput
Auto Trait Implementations
impl RefUnwindSafe for ListChannelMembershipsInput
impl Send for ListChannelMembershipsInput
impl Sync for ListChannelMembershipsInput
impl Unpin for ListChannelMembershipsInput
impl UnwindSafe for ListChannelMembershipsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more