Class: Aws::AppStream::Types::ApplicationSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::ApplicationSettings
- Defined in:
- gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb
Overview
Note:
When making an API call, you may pass ApplicationSettings data as a hash:
{
enabled: false, # required
settings_group: "SettingsGroup",
}
The persistent application settings for users of a stack.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Enables or disables persistent application settings for users during their streaming sessions.
-
#settings_group ⇒ String
The path prefix for the S3 bucket where users’ persistent application settings are stored.
Instance Attribute Details
#enabled ⇒ Boolean
Enables or disables persistent application settings for users during their streaming sessions.
228 229 230 231 232 233 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 228 class ApplicationSettings < Struct.new( :enabled, :settings_group) SENSITIVE = [] include Aws::Structure end |
#settings_group ⇒ String
The path prefix for the S3 bucket where users’ persistent application settings are stored. You can allow the same persistent application settings to be used across multiple stacks by specifying the same settings group for each stack.
228 229 230 231 232 233 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 228 class ApplicationSettings < Struct.new( :enabled, :settings_group) SENSITIVE = [] include Aws::Structure end |