Struct aws_sdk_workspacesweb::model::UserSettings
source · #[non_exhaustive]pub struct UserSettings { /* private fields */ }
Expand description
A user settings resource that can be associated with a web portal. Once associated with a web portal, user settings control how users can transfer data between a streaming session and the their local devices.
Implementations§
source§impl UserSettings
impl UserSettings
sourcepub fn user_settings_arn(&self) -> Option<&str>
pub fn user_settings_arn(&self) -> Option<&str>
The ARN of the user settings.
sourcepub fn associated_portal_arns(&self) -> Option<&[String]>
pub fn associated_portal_arns(&self) -> Option<&[String]>
A list of web portal ARNs that this user settings is associated with.
sourcepub fn copy_allowed(&self) -> Option<&EnabledType>
pub fn copy_allowed(&self) -> Option<&EnabledType>
Specifies whether the user can copy text from the streaming session to the local device.
sourcepub fn paste_allowed(&self) -> Option<&EnabledType>
pub fn paste_allowed(&self) -> Option<&EnabledType>
Specifies whether the user can paste text from the local device to the streaming session.
sourcepub fn download_allowed(&self) -> Option<&EnabledType>
pub fn download_allowed(&self) -> Option<&EnabledType>
Specifies whether the user can download files from the streaming session to the local device.
sourcepub fn upload_allowed(&self) -> Option<&EnabledType>
pub fn upload_allowed(&self) -> Option<&EnabledType>
Specifies whether the user can upload files from the local device to the streaming session.
sourcepub fn print_allowed(&self) -> Option<&EnabledType>
pub fn print_allowed(&self) -> Option<&EnabledType>
Specifies whether the user can print to the local device.
sourcepub fn disconnect_timeout_in_minutes(&self) -> Option<i32>
pub fn disconnect_timeout_in_minutes(&self) -> Option<i32>
The amount of time that a streaming session remains active after users disconnect.
sourcepub fn idle_disconnect_timeout_in_minutes(&self) -> Option<i32>
pub fn idle_disconnect_timeout_in_minutes(&self) -> Option<i32>
The amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins.
source§impl UserSettings
impl UserSettings
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UserSettings
.
Trait Implementations§
source§impl Clone for UserSettings
impl Clone for UserSettings
source§fn clone(&self) -> UserSettings
fn clone(&self) -> UserSettings
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UserSettings
impl Debug for UserSettings
source§impl PartialEq<UserSettings> for UserSettings
impl PartialEq<UserSettings> for UserSettings
source§fn eq(&self, other: &UserSettings) -> bool
fn eq(&self, other: &UserSettings) -> bool
self
and other
values to be equal, and is used
by ==
.