aws-cdk-lib.aws_appstream.CfnStack.ApplicationSettingsProperty

interface ApplicationSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.AppStream.CfnStack.ApplicationSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappstream#CfnStack_ApplicationSettingsProperty
Javasoftware.amazon.awscdk.services.appstream.CfnStack.ApplicationSettingsProperty
Pythonaws_cdk.aws_appstream.CfnStack.ApplicationSettingsProperty
TypeScript aws-cdk-lib » aws_appstream » CfnStack » ApplicationSettingsProperty

The persistent application settings for users of a stack.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appstream as appstream } from 'aws-cdk-lib';
const applicationSettingsProperty: appstream.CfnStack.ApplicationSettingsProperty = {
  enabled: false,

  // the properties below are optional
  settingsGroup: 'settingsGroup',
};

Properties

NameTypeDescription
enabledboolean | IResolvableEnables or disables persistent application settings for users during their streaming sessions.
settingsGroup?stringThe path prefix for the S3 bucket where users’ persistent application settings are stored.

enabled

Type: boolean | IResolvable

Enables or disables persistent application settings for users during their streaming sessions.


settingsGroup?

Type: string (optional)

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.