[][src]Struct rusoto_alexaforbusiness::MeetingRoomConfiguration

pub struct MeetingRoomConfiguration {
    pub end_of_meeting_reminder: Option<EndOfMeetingReminder>,
    pub instant_booking: Option<InstantBooking>,
    pub require_check_in: Option<RequireCheckIn>,
    pub room_utilization_metrics_enabled: Option<bool>,
}

Meeting room settings of a room profile.

Fields

end_of_meeting_reminder: Option<EndOfMeetingReminder>

Settings for the end of meeting reminder feature that are applied to a room profile. The end of meeting reminder enables Alexa to remind users when a meeting is ending.

instant_booking: Option<InstantBooking>

Settings to automatically book the room if available for a configured duration when joining a meeting with Alexa.

require_check_in: Option<RequireCheckIn>

Settings for requiring a check in when a room is reserved. Alexa can cancel a room reservation if it's not checked into. This makes the room available for others. Users can check in by joining the meeting with Alexa or an AVS device, or by saying “Alexa, check in.”

room_utilization_metrics_enabled: Option<bool>

Whether room utilization metrics are enabled or not.

Trait Implementations

impl Clone for MeetingRoomConfiguration[src]

impl Debug for MeetingRoomConfiguration[src]

impl Default for MeetingRoomConfiguration[src]

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

impl PartialEq<MeetingRoomConfiguration> for MeetingRoomConfiguration[src]

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