Struct aws_sdk_chime::types::builders::ChannelSummaryBuilder
source · #[non_exhaustive]pub struct ChannelSummaryBuilder { /* private fields */ }Expand description
A builder for ChannelSummary.
Implementations§
source§impl ChannelSummaryBuilder
impl ChannelSummaryBuilder
sourcepub fn channel_arn(self, input: impl Into<String>) -> Self
pub fn channel_arn(self, input: impl Into<String>) -> Self
The ARN of the channel.
sourcepub fn set_channel_arn(self, input: Option<String>) -> Self
pub fn set_channel_arn(self, input: Option<String>) -> Self
The ARN of the channel.
sourcepub fn mode(self, input: ChannelMode) -> Self
pub fn mode(self, input: ChannelMode) -> Self
The mode of the channel.
sourcepub fn set_mode(self, input: Option<ChannelMode>) -> Self
pub fn set_mode(self, input: Option<ChannelMode>) -> Self
The mode of the channel.
sourcepub fn privacy(self, input: ChannelPrivacy) -> Self
pub fn privacy(self, input: ChannelPrivacy) -> Self
The privacy setting of the channel.
sourcepub fn set_privacy(self, input: Option<ChannelPrivacy>) -> Self
pub fn set_privacy(self, input: Option<ChannelPrivacy>) -> Self
The privacy setting of the channel.
sourcepub fn set_metadata(self, input: Option<String>) -> Self
pub fn set_metadata(self, input: Option<String>) -> Self
The metadata of the channel.
sourcepub fn last_message_timestamp(self, input: DateTime) -> Self
pub fn last_message_timestamp(self, input: DateTime) -> Self
The time at which the last message in a channel was sent.
sourcepub fn set_last_message_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_last_message_timestamp(self, input: Option<DateTime>) -> Self
The time at which the last message in a channel was sent.
sourcepub fn build(self) -> ChannelSummary
pub fn build(self) -> ChannelSummary
Consumes the builder and constructs a ChannelSummary.
Trait Implementations§
source§impl Clone for ChannelSummaryBuilder
impl Clone for ChannelSummaryBuilder
source§fn clone(&self) -> ChannelSummaryBuilder
fn clone(&self) -> ChannelSummaryBuilder
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 ChannelSummaryBuilder
impl Debug for ChannelSummaryBuilder
source§impl Default for ChannelSummaryBuilder
impl Default for ChannelSummaryBuilder
source§fn default() -> ChannelSummaryBuilder
fn default() -> ChannelSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ChannelSummaryBuilder> for ChannelSummaryBuilder
impl PartialEq<ChannelSummaryBuilder> for ChannelSummaryBuilder
source§fn eq(&self, other: &ChannelSummaryBuilder) -> bool
fn eq(&self, other: &ChannelSummaryBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ChannelSummaryBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ChannelSummaryBuilder
impl Send for ChannelSummaryBuilder
impl Sync for ChannelSummaryBuilder
impl Unpin for ChannelSummaryBuilder
impl UnwindSafe for ChannelSummaryBuilder
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