[][src]Struct rusoto_alexaforbusiness::CreateProfileRequest

pub struct CreateProfileRequest {
    pub address: String,
    pub client_request_token: Option<String>,
    pub distance_unit: String,
    pub locale: Option<String>,
    pub max_volume_limit: Option<i64>,
    pub meeting_room_configuration: Option<CreateMeetingRoomConfiguration>,
    pub pstn_enabled: Option<bool>,
    pub profile_name: String,
    pub setup_mode_disabled: Option<bool>,
    pub tags: Option<Vec<Tag>>,
    pub temperature_unit: String,
    pub timezone: String,
    pub wake_word: String,
}

Fields

address: String

The valid address for the room.

client_request_token: Option<String>

The user-specified token that is used during the creation of a profile.

distance_unit: String

The distance unit to be used by devices in the profile.

locale: Option<String>

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

max_volume_limit: Option<i64>

The maximum volume limit for a room profile.

meeting_room_configuration: Option<CreateMeetingRoomConfiguration>

The meeting room settings of a room profile.

pstn_enabled: Option<bool>

Whether PSTN calling is enabled.

profile_name: String

The name of a room profile.

setup_mode_disabled: Option<bool>

Whether room profile setup is enabled.

tags: Option<Vec<Tag>>

The tags for the profile.

temperature_unit: String

The temperature unit to be used by devices in the profile.

timezone: String

The time zone used by a room profile.

wake_word: String

A wake word for Alexa, Echo, Amazon, or a computer.

Trait Implementations

impl Clone for CreateProfileRequest[src]

impl Debug for CreateProfileRequest[src]

impl Default for CreateProfileRequest[src]

impl PartialEq<CreateProfileRequest> for CreateProfileRequest[src]

impl Serialize for CreateProfileRequest[src]

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