#[non_exhaustive]pub struct ApplicationSettingsResponse {
pub enabled: Option<bool>,
pub settings_group: Option<String>,
pub s3_bucket_name: Option<String>,
}
Expand description
Describes the persistent application settings for users of a stack.
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.enabled: Option<bool>
Specifies whether persistent application settings are enabled for users during their streaming sessions.
settings_group: Option<String>
The path prefix for the S3 bucket where users’ persistent application settings are stored.
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.
Implementations§
source§impl ApplicationSettingsResponse
impl ApplicationSettingsResponse
sourcepub fn enabled(&self) -> Option<bool>
pub fn enabled(&self) -> Option<bool>
Specifies whether persistent application settings are enabled for users during their streaming sessions.
sourcepub fn settings_group(&self) -> Option<&str>
pub fn settings_group(&self) -> Option<&str>
The path prefix for the S3 bucket where users’ persistent application settings are stored.
sourcepub fn s3_bucket_name(&self) -> Option<&str>
pub fn s3_bucket_name(&self) -> Option<&str>
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.
source§impl ApplicationSettingsResponse
impl ApplicationSettingsResponse
sourcepub fn builder() -> ApplicationSettingsResponseBuilder
pub fn builder() -> ApplicationSettingsResponseBuilder
Creates a new builder-style object to manufacture ApplicationSettingsResponse
.
Trait Implementations§
source§impl Clone for ApplicationSettingsResponse
impl Clone for ApplicationSettingsResponse
source§fn clone(&self) -> ApplicationSettingsResponse
fn clone(&self) -> ApplicationSettingsResponse
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ApplicationSettingsResponse
impl Debug for ApplicationSettingsResponse
source§impl PartialEq for ApplicationSettingsResponse
impl PartialEq for ApplicationSettingsResponse
source§fn eq(&self, other: &ApplicationSettingsResponse) -> bool
fn eq(&self, other: &ApplicationSettingsResponse) -> bool
self
and other
values to be equal, and is used
by ==
.