[][src]Struct rusoto_chime::SendChannelMessageRequest

pub struct SendChannelMessageRequest {
    pub channel_arn: String,
    pub client_request_token: String,
    pub content: String,
    pub metadata: Option<String>,
    pub persistence: String,
    pub type_: String,
}

Fields

channel_arn: String

The ARN of the channel.

client_request_token: String

The Idempotency token for each client request.

content: String

The content of the message.

metadata: Option<String>

The optional metadata for each message.

persistence: String

Boolean that controls whether the message is persisted on the back end. Required.

type_: String

The type of message, STANDARD or CONTROL.

Trait Implementations

impl Clone for SendChannelMessageRequest[src]

impl Debug for SendChannelMessageRequest[src]

impl Default for SendChannelMessageRequest[src]

impl PartialEq<SendChannelMessageRequest> for SendChannelMessageRequest[src]

impl Serialize for SendChannelMessageRequest[src]

impl StructuralPartialEq for SendChannelMessageRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.