#[non_exhaustive]pub struct UpdateUserSettingsInput { /* private fields */ }
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.
source§impl UpdateUserSettingsInput
impl UpdateUserSettingsInput
sourcepub fn builder() -> UpdateUserSettingsInputBuilder
pub fn builder() -> UpdateUserSettingsInputBuilder
Creates a new builder-style object to manufacture UpdateUserSettingsInput
.
source§impl UpdateUserSettingsInput
impl UpdateUserSettingsInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateUserSettings, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( self, _config: &Config ) -> Result<Operation<UpdateUserSettings, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateUserSettings
>
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<UpdateUserSettingsInput> for UpdateUserSettingsInput
impl PartialEq<UpdateUserSettingsInput> 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 ==
.