pub struct ApplicationSettingsResponse {
pub enabled: Option<bool>,
pub s3_bucket_name: Option<String>,
pub settings_group: Option<String>,
}
Expand description
Describes the persistent application settings for users of a stack.
Fields§
§enabled: Option<bool>
Specifies whether persistent application settings are enabled for users during their streaming sessions.
s3_bucket_name: Option<String>
The S3 bucket where users’ persistent application settings are stored. When persistent application settings are enabled for the first time for an account in an AWS Region, an S3 bucket is created. The bucket is unique to the AWS account and the Region.
settings_group: Option<String>
The path prefix for the S3 bucket where users’ persistent application settings are stored.
Trait Implementations§
Source§impl Clone for ApplicationSettingsResponse
impl Clone for ApplicationSettingsResponse
Source§fn clone(&self) -> ApplicationSettingsResponse
fn clone(&self) -> ApplicationSettingsResponse
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ApplicationSettingsResponse
impl Debug for ApplicationSettingsResponse
Source§impl Default for ApplicationSettingsResponse
impl Default for ApplicationSettingsResponse
Source§fn default() -> ApplicationSettingsResponse
fn default() -> ApplicationSettingsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationSettingsResponse
impl<'de> Deserialize<'de> for ApplicationSettingsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ApplicationSettingsResponse
Auto Trait Implementations§
impl Freeze for ApplicationSettingsResponse
impl RefUnwindSafe for ApplicationSettingsResponse
impl Send for ApplicationSettingsResponse
impl Sync for ApplicationSettingsResponse
impl Unpin for ApplicationSettingsResponse
impl UnwindSafe for ApplicationSettingsResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more