[][src]Struct rusoto_chime::Attendee

pub struct Attendee {
    pub attendee_id: Option<String>,
    pub external_user_id: Option<String>,
    pub join_token: Option<String>,
}

An Amazon Chime SDK meeting attendee. Includes a unique AttendeeId and JoinToken. The JoinToken allows a client to authenticate and join as the specified attendee. The JoinToken expires when the meeting ends or when DeleteAttendee is called. After that, the attendee is unable to join the meeting.

We recommend securely transferring each JoinToken from your server application to the client so that no other client has access to the token except for the one authorized to represent the attendee.

Fields

attendee_id: Option<String>

The Amazon Chime SDK attendee ID.

external_user_id: Option<String>

The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.

join_token: Option<String>

The join token used by the Amazon Chime SDK attendee.

Trait Implementations

impl Clone for Attendee[src]

impl Debug for Attendee[src]

impl Default for Attendee[src]

impl<'de> Deserialize<'de> for Attendee[src]

impl PartialEq<Attendee> for Attendee[src]

impl StructuralPartialEq for Attendee[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.