interface ApplicationSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WorkSpaces.CfnWorkspacesPoolPropsMixin.ApplicationSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsworkspaces#CfnWorkspacesPoolPropsMixin_ApplicationSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.workspaces.CfnWorkspacesPoolPropsMixin.ApplicationSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_workspaces.CfnWorkspacesPoolPropsMixin.ApplicationSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_workspaces » CfnWorkspacesPoolPropsMixin » 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/cfn-property-mixins';
const applicationSettingsProperty: workspaces.CfnWorkspacesPoolPropsMixin.ApplicationSettingsProperty = {
settingsGroup: 'settingsGroup',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| settings | string | The path prefix for the S3 bucket where users’ persistent application settings are stored. |
| status? | 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.
status?
Type:
string
(optional)
Enables or disables persistent application settings for users during their pool sessions.

.NET
Go
Java
Python
TypeScript