[][src]Struct rusoto_workspaces::WorkspaceAccessProperties

pub struct WorkspaceAccessProperties {
    pub device_type_android: Option<String>,
    pub device_type_chrome_os: Option<String>,
    pub device_type_ios: Option<String>,
    pub device_type_osx: Option<String>,
    pub device_type_web: Option<String>,
    pub device_type_windows: Option<String>,
    pub device_type_zero_client: Option<String>,
}

The device types and operating systems that can be used to access a WorkSpace. For more information, see Amazon WorkSpaces Client Network Requirements.

Fields

device_type_android: Option<String>

Indicates whether users can use Android devices to access their WorkSpaces.

device_type_chrome_os: Option<String>

Indicates whether users can use Chromebooks to access their WorkSpaces.

device_type_ios: Option<String>

Indicates whether users can use iOS devices to access their WorkSpaces.

device_type_osx: Option<String>

Indicates whether users can use macOS clients to access their WorkSpaces. To restrict WorkSpaces access to trusted devices (also known as managed devices) with valid certificates, specify a value of TRUST. For more information, see Restrict WorkSpaces Access to Trusted Devices.

device_type_web: Option<String>

Indicates whether users can access their WorkSpaces through a web browser.

device_type_windows: Option<String>

Indicates whether users can use Windows clients to access their WorkSpaces. To restrict WorkSpaces access to trusted devices (also known as managed devices) with valid certificates, specify a value of TRUST. For more information, see Restrict WorkSpaces Access to Trusted Devices.

device_type_zero_client: Option<String>

Indicates whether users can use zero client devices to access their WorkSpaces.

Trait Implementations

impl Clone for WorkspaceAccessProperties[src]

impl Debug for WorkspaceAccessProperties[src]

impl Default for WorkspaceAccessProperties[src]

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

impl PartialEq<WorkspaceAccessProperties> for WorkspaceAccessProperties[src]

impl Serialize for WorkspaceAccessProperties[src]

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