[][src]Struct rusoto_alexaforbusiness::Profile

pub struct Profile {
    pub address: Option<String>,
    pub address_book_arn: Option<String>,
    pub distance_unit: Option<String>,
    pub is_default: Option<bool>,
    pub locale: Option<String>,
    pub max_volume_limit: Option<i64>,
    pub meeting_room_configuration: Option<MeetingRoomConfiguration>,
    pub pstn_enabled: Option<bool>,
    pub profile_arn: Option<String>,
    pub profile_name: Option<String>,
    pub setup_mode_disabled: Option<bool>,
    pub temperature_unit: Option<String>,
    pub timezone: Option<String>,
    pub wake_word: Option<String>,
}

A room profile with attributes.

Fields

address: Option<String>

The address of a room profile.

address_book_arn: Option<String>

The ARN of the address book.

distance_unit: Option<String>

The distance unit of a room profile.

is_default: Option<bool>

Retrieves if the profile is default or not.

locale: Option<String>

The locale of a room profile. (This is currently available only to a limited preview audience.)

max_volume_limit: Option<i64>

The max volume limit of a room profile.

meeting_room_configuration: Option<MeetingRoomConfiguration>

Meeting room settings of a room profile.

pstn_enabled: Option<bool>

The PSTN setting of a room profile.

profile_arn: Option<String>

The ARN of a room profile.

profile_name: Option<String>

The name of a room profile.

setup_mode_disabled: Option<bool>

The setup mode of a room profile.

temperature_unit: Option<String>

The temperature unit of a room profile.

timezone: Option<String>

The time zone of a room profile.

wake_word: Option<String>

The wake word of a room profile.

Trait Implementations

impl Clone for Profile[src]

impl Debug for Profile[src]

impl Default for Profile[src]

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

impl PartialEq<Profile> for Profile[src]

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