@Stability(value=Stable)
public static interface CfnStack.ApplicationSettingsProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.appstream.*;
ApplicationSettingsProperty applicationSettingsProperty = ApplicationSettingsProperty.builder()
.enabled(false)
// the properties below are optional
.settingsGroup("settingsGroup")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStack.ApplicationSettingsProperty.Builder
A builder for
CfnStack.ApplicationSettingsProperty |
static class |
CfnStack.ApplicationSettingsProperty.Jsii$Proxy
An implementation for
CfnStack.ApplicationSettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnStack.ApplicationSettingsProperty.Builder |
builder() |
Object |
getEnabled()
Enables or disables persistent application settings for users during their streaming sessions.
|
default String |
getSettingsGroup()
The path prefix for the S3 bucket where users’ persistent application settings are stored.
|
@Stability(value=Stable) @NotNull Object getEnabled()
@Stability(value=Stable) @Nullable default String getSettingsGroup()
You can allow the same persistent application settings to be used across multiple stacks by specifying the same settings group for each stack.
@Stability(value=Stable) static CfnStack.ApplicationSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.