Struct aws_sdk_chime::operation::create_channel_ban::builders::CreateChannelBanOutputBuilder
source · #[non_exhaustive]pub struct CreateChannelBanOutputBuilder { /* private fields */ }Expand description
A builder for CreateChannelBanOutput.
Implementations§
source§impl CreateChannelBanOutputBuilder
impl CreateChannelBanOutputBuilder
sourcepub fn channel_arn(self, input: impl Into<String>) -> Self
pub fn channel_arn(self, input: impl Into<String>) -> Self
The ARN of the response to the ban request.
sourcepub fn set_channel_arn(self, input: Option<String>) -> Self
pub fn set_channel_arn(self, input: Option<String>) -> Self
The ARN of the response to the ban request.
sourcepub fn get_channel_arn(&self) -> &Option<String>
pub fn get_channel_arn(&self) -> &Option<String>
The ARN of the response to the ban request.
sourcepub fn member(self, input: Identity) -> Self
pub fn member(self, input: Identity) -> Self
The ChannelArn and BannedIdentity of the member in the ban response.
sourcepub fn set_member(self, input: Option<Identity>) -> Self
pub fn set_member(self, input: Option<Identity>) -> Self
The ChannelArn and BannedIdentity of the member in the ban response.
sourcepub fn get_member(&self) -> &Option<Identity>
pub fn get_member(&self) -> &Option<Identity>
The ChannelArn and BannedIdentity of the member in the ban response.
sourcepub fn build(self) -> CreateChannelBanOutput
pub fn build(self) -> CreateChannelBanOutput
Consumes the builder and constructs a CreateChannelBanOutput.
Trait Implementations§
source§impl Clone for CreateChannelBanOutputBuilder
impl Clone for CreateChannelBanOutputBuilder
source§fn clone(&self) -> CreateChannelBanOutputBuilder
fn clone(&self) -> CreateChannelBanOutputBuilder
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 CreateChannelBanOutputBuilder
impl Default for CreateChannelBanOutputBuilder
source§fn default() -> CreateChannelBanOutputBuilder
fn default() -> CreateChannelBanOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CreateChannelBanOutputBuilder
impl PartialEq for CreateChannelBanOutputBuilder
source§fn eq(&self, other: &CreateChannelBanOutputBuilder) -> bool
fn eq(&self, other: &CreateChannelBanOutputBuilder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateChannelBanOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateChannelBanOutputBuilder
impl RefUnwindSafe for CreateChannelBanOutputBuilder
impl Send for CreateChannelBanOutputBuilder
impl Sync for CreateChannelBanOutputBuilder
impl Unpin for CreateChannelBanOutputBuilder
impl UnwindSafe for CreateChannelBanOutputBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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.