[][src]Struct rusoto_alexaforbusiness::UpdateMeetingRoomConfiguration

pub struct UpdateMeetingRoomConfiguration {
    pub end_of_meeting_reminder: Option<UpdateEndOfMeetingReminder>,
    pub instant_booking: Option<UpdateInstantBooking>,
    pub require_check_in: Option<UpdateRequireCheckIn>,
    pub room_utilization_metrics_enabled: Option<bool>,
}

Updates meeting room settings of a room profile.

Fields

end_of_meeting_reminder: Option<UpdateEndOfMeetingReminder>

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<UpdateInstantBooking>

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

require_check_in: Option<UpdateRequireCheckIn>

Settings for requiring a check in when a room is reserved. Alexa can cancel a room reservation if it's not checked into to make 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 UpdateMeetingRoomConfiguration[src]

impl Debug for UpdateMeetingRoomConfiguration[src]

impl Default for UpdateMeetingRoomConfiguration[src]

impl PartialEq<UpdateMeetingRoomConfiguration> for UpdateMeetingRoomConfiguration[src]

impl Serialize for UpdateMeetingRoomConfiguration[src]

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