#[non_exhaustive]pub struct UpdateUserSettingsInput {
pub user_settings_arn: Option<String>,
pub copy_allowed: Option<EnabledType>,
pub paste_allowed: Option<EnabledType>,
pub download_allowed: Option<EnabledType>,
pub upload_allowed: Option<EnabledType>,
pub print_allowed: Option<EnabledType>,
pub disconnect_timeout_in_minutes: Option<i32>,
pub idle_disconnect_timeout_in_minutes: Option<i32>,
pub client_token: Option<String>,
pub cookie_synchronization_configuration: Option<CookieSynchronizationConfiguration>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.user_settings_arn: Option<String>
The ARN of the user settings.
copy_allowed: Option<EnabledType>
Specifies whether the user can copy text from the streaming session to the local device.
paste_allowed: Option<EnabledType>
Specifies whether the user can paste text from the local device to the streaming session.
download_allowed: Option<EnabledType>
Specifies whether the user can download files from the streaming session to the local device.
upload_allowed: Option<EnabledType>
Specifies whether the user can upload files from the local device to the streaming session.
print_allowed: Option<EnabledType>
Specifies whether the user can print to the local device.
disconnect_timeout_in_minutes: Option<i32>
The amount of time that a streaming session remains active after users disconnect.
idle_disconnect_timeout_in_minutes: 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.
client_token: Option<String>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token return the result from the original successful request.
If you do not specify a client token, one is automatically generated by the AWS SDK.
The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.
If the allowlist and blocklist are empty, the configuration becomes null.
Implementations§
source§impl UpdateUserSettingsInput
impl UpdateUserSettingsInput
sourcepub fn user_settings_arn(&self) -> Option<&str>
pub fn user_settings_arn(&self) -> Option<&str>
The ARN of the user settings.
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.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token return the result from the original successful request.
If you do not specify a client token, one is automatically generated by the AWS SDK.
The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.
If the allowlist and blocklist are empty, the configuration becomes null.
source§impl UpdateUserSettingsInput
impl UpdateUserSettingsInput
sourcepub fn builder() -> UpdateUserSettingsInputBuilder
pub fn builder() -> UpdateUserSettingsInputBuilder
Creates a new builder-style object to manufacture UpdateUserSettingsInput
.
Trait Implementations§
source§impl Clone for UpdateUserSettingsInput
impl Clone for UpdateUserSettingsInput
source§fn clone(&self) -> UpdateUserSettingsInput
fn clone(&self) -> UpdateUserSettingsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateUserSettingsInput
impl Debug for UpdateUserSettingsInput
source§impl PartialEq for UpdateUserSettingsInput
impl PartialEq for UpdateUserSettingsInput
source§fn eq(&self, other: &UpdateUserSettingsInput) -> bool
fn eq(&self, other: &UpdateUserSettingsInput) -> bool
self
and other
values to be equal, and is used
by ==
.