#[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 ==
.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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more