Interface ApplicationSettings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApplicationSettings.Builder,ApplicationSettings>,SdkBuilder<ApplicationSettings.Builder,ApplicationSettings>,SdkPojo
- Enclosing class:
- ApplicationSettings
public static interface ApplicationSettings.Builder extends SdkPojo, CopyableBuilder<ApplicationSettings.Builder,ApplicationSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationSettings.Builderenabled(Boolean enabled)Enables or disables persistent application settings for users during their streaming sessions.ApplicationSettings.BuildersettingsGroup(String settingsGroup)The path prefix for the S3 bucket where users’ persistent application settings are stored.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
enabled
ApplicationSettings.Builder enabled(Boolean enabled)
Enables or disables persistent application settings for users during their streaming sessions.
- Parameters:
enabled- Enables or disables persistent application settings for users during their streaming sessions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
settingsGroup
ApplicationSettings.Builder settingsGroup(String settingsGroup)
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.
- Parameters:
settingsGroup- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-