[][src]Struct rusoto_chime::CreateMeetingWithAttendeesRequest

pub struct CreateMeetingWithAttendeesRequest {
    pub attendees: Option<Vec<CreateAttendeeRequestItem>>,
    pub client_request_token: String,
    pub external_meeting_id: Option<String>,
    pub media_region: Option<String>,
    pub meeting_host_id: Option<String>,
    pub notifications_configuration: Option<MeetingNotificationConfiguration>,
    pub tags: Option<Vec<Tag>>,
}

Fields

attendees: Option<Vec<CreateAttendeeRequestItem>>

The request containing the attendees to create.

client_request_token: String

The unique identifier for the client request. Use a different token for different meetings.

external_meeting_id: Option<String>

The external meeting ID.

media_region: Option<String>

The Region in which to create the meeting. Default: us-east-1.

Available values: af-south-1, ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-north-1, eu-south-1, eu-west-1, eu-west-2, eu-west-3, sa-east-1, us-east-1, us-east-2, us-west-1, us-west-2.

meeting_host_id: Option<String>

Reserved.

notifications_configuration: Option<MeetingNotificationConfiguration>tags: Option<Vec<Tag>>

The tag key-value pairs.

Trait Implementations

impl Clone for CreateMeetingWithAttendeesRequest[src]

impl Debug for CreateMeetingWithAttendeesRequest[src]

impl Default for CreateMeetingWithAttendeesRequest[src]

impl PartialEq<CreateMeetingWithAttendeesRequest> for CreateMeetingWithAttendeesRequest[src]

impl Serialize for CreateMeetingWithAttendeesRequest[src]

impl StructuralPartialEq for CreateMeetingWithAttendeesRequest[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.