interface ApplicationSettingsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.WorkSpaces.CfnWorkspacesPool.ApplicationSettingsProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspaces#CfnWorkspacesPool_ApplicationSettingsProperty | 
|  Java | software.amazon.awscdk.services.workspaces.CfnWorkspacesPool.ApplicationSettingsProperty | 
|  Python | aws_cdk.aws_workspaces.CfnWorkspacesPool.ApplicationSettingsProperty | 
|  TypeScript | aws-cdk-lib»aws_workspaces»CfnWorkspacesPool»ApplicationSettingsProperty | 
The persistent application settings for users in the pool.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_workspaces as workspaces } from 'aws-cdk-lib';
const applicationSettingsProperty: workspaces.CfnWorkspacesPool.ApplicationSettingsProperty = {
  status: 'status',
  // the properties below are optional
  settingsGroup: 'settingsGroup',
};
Properties
| Name | Type | Description | 
|---|---|---|
| status | string | Enables or disables persistent application settings for users during their pool sessions. | 
| settings | string | The path prefix for the S3 bucket where users’ persistent application settings are stored. | 
status
Type:
string
Enables or disables persistent application settings for users during their pool sessions.
settingsGroup?
Type:
string
(optional)
The path prefix for the S3 bucket where users’ persistent application settings are stored.
