Struct aws_sdk_chime::types::builders::ChannelMessageBuilder
source · #[non_exhaustive]pub struct ChannelMessageBuilder { /* private fields */ }Expand description
A builder for ChannelMessage.
Implementations§
source§impl ChannelMessageBuilder
impl ChannelMessageBuilder
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 message_id(self, input: impl Into<String>) -> Self
pub fn message_id(self, input: impl Into<String>) -> Self
The ID of a message.
sourcepub fn set_message_id(self, input: Option<String>) -> Self
pub fn set_message_id(self, input: Option<String>) -> Self
The ID of a message.
sourcepub fn set_content(self, input: Option<String>) -> Self
pub fn set_content(self, input: Option<String>) -> Self
The message content.
sourcepub fn set_metadata(self, input: Option<String>) -> Self
pub fn set_metadata(self, input: Option<String>) -> Self
The message metadata.
sourcepub fn type(self, input: ChannelMessageType) -> Self
pub fn type(self, input: ChannelMessageType) -> Self
The message type.
sourcepub fn set_type(self, input: Option<ChannelMessageType>) -> Self
pub fn set_type(self, input: Option<ChannelMessageType>) -> Self
The message type.
sourcepub fn created_timestamp(self, input: DateTime) -> Self
pub fn created_timestamp(self, input: DateTime) -> Self
The time at which the message was created.
sourcepub fn set_created_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_created_timestamp(self, input: Option<DateTime>) -> Self
The time at which the message was created.
sourcepub fn last_edited_timestamp(self, input: DateTime) -> Self
pub fn last_edited_timestamp(self, input: DateTime) -> Self
The time at which a message was edited.
sourcepub fn set_last_edited_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_last_edited_timestamp(self, input: Option<DateTime>) -> Self
The time at which a message was edited.
sourcepub fn last_updated_timestamp(self, input: DateTime) -> Self
pub fn last_updated_timestamp(self, input: DateTime) -> Self
The time at which a message was updated.
sourcepub fn set_last_updated_timestamp(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_timestamp(self, input: Option<DateTime>) -> Self
The time at which a message was updated.
sourcepub fn set_sender(self, input: Option<Identity>) -> Self
pub fn set_sender(self, input: Option<Identity>) -> Self
The message sender.
sourcepub fn set_redacted(self, input: Option<bool>) -> Self
pub fn set_redacted(self, input: Option<bool>) -> Self
Hides the content of a message.
sourcepub fn persistence(self, input: ChannelMessagePersistenceType) -> Self
pub fn persistence(self, input: ChannelMessagePersistenceType) -> Self
The persistence setting for a channel message.
sourcepub fn set_persistence(
self,
input: Option<ChannelMessagePersistenceType>
) -> Self
pub fn set_persistence( self, input: Option<ChannelMessagePersistenceType> ) -> Self
The persistence setting for a channel message.
sourcepub fn build(self) -> ChannelMessage
pub fn build(self) -> ChannelMessage
Consumes the builder and constructs a ChannelMessage.
Trait Implementations§
source§impl Clone for ChannelMessageBuilder
impl Clone for ChannelMessageBuilder
source§fn clone(&self) -> ChannelMessageBuilder
fn clone(&self) -> ChannelMessageBuilder
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 ChannelMessageBuilder
impl Debug for ChannelMessageBuilder
source§impl Default for ChannelMessageBuilder
impl Default for ChannelMessageBuilder
source§fn default() -> ChannelMessageBuilder
fn default() -> ChannelMessageBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ChannelMessageBuilder> for ChannelMessageBuilder
impl PartialEq<ChannelMessageBuilder> for ChannelMessageBuilder
source§fn eq(&self, other: &ChannelMessageBuilder) -> bool
fn eq(&self, other: &ChannelMessageBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ChannelMessageBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ChannelMessageBuilder
impl Send for ChannelMessageBuilder
impl Sync for ChannelMessageBuilder
impl Unpin for ChannelMessageBuilder
impl UnwindSafe for ChannelMessageBuilder
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