[][src]Struct rusoto_appstream::ApplicationSettingsResponse

pub struct ApplicationSettingsResponse {
    pub enabled: Option<bool>,
    pub s3_bucket_name: Option<String>,
    pub settings_group: Option<String>,
}

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

impl Clone for ApplicationSettingsResponse[src]

impl Debug for ApplicationSettingsResponse[src]

impl Default for ApplicationSettingsResponse[src]

impl<'de> Deserialize<'de> for ApplicationSettingsResponse[src]

impl PartialEq<ApplicationSettingsResponse> for ApplicationSettingsResponse[src]

impl StructuralPartialEq for ApplicationSettingsResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.