interface CfnUserSettingsMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnUserSettingsMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnUserSettingsMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnUserSettingsMixinProps |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnUserSettingsMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnUserSettingsMixinProps |
Properties for CfnUserSettingsPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as workspacesweb_mixins } from '@aws-cdk/mixins-preview/aws-workspacesweb';
const cfnUserSettingsMixinProps: workspacesweb_mixins.CfnUserSettingsMixinProps = {
additionalEncryptionContext: {
additionalEncryptionContextKey: 'additionalEncryptionContext',
},
brandingConfiguration: {
colorTheme: 'colorTheme',
favicon: 'favicon',
faviconMetadata: {
fileExtension: 'fileExtension',
lastUploadTimestamp: 'lastUploadTimestamp',
mimeType: 'mimeType',
},
localizedStrings: {
localizedStringsKey: {
browserTabTitle: 'browserTabTitle',
contactButtonText: 'contactButtonText',
contactLink: 'contactLink',
loadingText: 'loadingText',
loginButtonText: 'loginButtonText',
loginDescription: 'loginDescription',
loginTitle: 'loginTitle',
welcomeText: 'welcomeText',
},
},
logo: 'logo',
logoMetadata: {
fileExtension: 'fileExtension',
lastUploadTimestamp: 'lastUploadTimestamp',
mimeType: 'mimeType',
},
termsOfService: 'termsOfService',
wallpaper: 'wallpaper',
wallpaperMetadata: {
fileExtension: 'fileExtension',
lastUploadTimestamp: 'lastUploadTimestamp',
mimeType: 'mimeType',
},
},
cookieSynchronizationConfiguration: {
allowlist: [{
domain: 'domain',
name: 'name',
path: 'path',
}],
blocklist: [{
domain: 'domain',
name: 'name',
path: 'path',
}],
},
copyAllowed: 'copyAllowed',
customerManagedKey: 'customerManagedKey',
deepLinkAllowed: 'deepLinkAllowed',
disconnectTimeoutInMinutes: 123,
downloadAllowed: 'downloadAllowed',
idleDisconnectTimeoutInMinutes: 123,
pasteAllowed: 'pasteAllowed',
printAllowed: 'printAllowed',
tags: [{
key: 'key',
value: 'value',
}],
toolbarConfiguration: {
hiddenToolbarItems: ['hiddenToolbarItems'],
maxDisplayResolution: 'maxDisplayResolution',
toolbarType: 'toolbarType',
visualMode: 'visualMode',
},
uploadAllowed: 'uploadAllowed',
webAuthnAllowed: 'webAuthnAllowed',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | { [string]: string } | IResolvable | The additional encryption context of the user settings. |
| branding | IResolvable | Branding | The branding configuration that customizes the appearance of the web portal for end users. |
| cookie | IResolvable | Cookie | The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser. |
| copy | string | Specifies whether the user can copy text from the streaming session to the local device. |
| customer | string | The customer managed key used to encrypt sensitive information in the user settings. |
| deep | string | Specifies whether the user can use deep links that open automatically when connecting to a session. |
| disconnect | number | The amount of time that a streaming session remains active after users disconnect. |
| download | string | Specifies whether the user can download files from the streaming session to the local device. |
| idle | number | The amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins. |
| paste | string | Specifies whether the user can paste text from the local device to the streaming session. |
| print | string | Specifies whether the user can print to the local device. |
| tags? | Cfn[] | The tags to add to the user settings resource. |
| toolbar | IResolvable | Toolbar | The configuration of the toolbar. |
| upload | string | Specifies whether the user can upload files from the local device to the streaming session. |
| web | string | Specifies whether the user can use WebAuthn redirection for passwordless login to websites within the streaming session. |
additionalEncryptionContext?
Type:
{ [string]: string } | IResolvable
(optional)
The additional encryption context of the user settings.
brandingConfiguration?
Type:
IResolvable | Branding
(optional)
The branding configuration that customizes the appearance of the web portal for end users.
This includes a custom logo, favicon, wallpaper, localized strings, color theme, and an optional terms of service.
cookieSynchronizationConfiguration?
Type:
IResolvable | Cookie
(optional)
The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.
copyAllowed?
Type:
string
(optional)
Specifies whether the user can copy text from the streaming session to the local device.
customerManagedKey?
Type:
string
(optional)
The customer managed key used to encrypt sensitive information in the user settings.
deepLinkAllowed?
Type:
string
(optional)
Specifies whether the user can use deep links that open automatically when connecting to a session.
disconnectTimeoutInMinutes?
Type:
number
(optional)
The amount of time that a streaming session remains active after users disconnect.
downloadAllowed?
Type:
string
(optional)
Specifies whether the user can download files from the streaming session to the local device.
idleDisconnectTimeoutInMinutes?
Type:
number
(optional)
The amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins.
pasteAllowed?
Type:
string
(optional)
Specifies whether the user can paste text from the local device to the streaming session.
printAllowed?
Type:
string
(optional)
Specifies whether the user can print to the local device.
tags?
Type:
Cfn[]
(optional)
The tags to add to the user settings resource.
A tag is a key-value pair.
toolbarConfiguration?
Type:
IResolvable | Toolbar
(optional)
The configuration of the toolbar.
This allows administrators to select the toolbar type and visual mode, set maximum display resolution for sessions, and choose which items are visible to end users during their sessions. If administrators do not modify these settings, end users retain control over their toolbar preferences.
uploadAllowed?
Type:
string
(optional)
Specifies whether the user can upload files from the local device to the streaming session.
webAuthnAllowed?
Type:
string
(optional)
Specifies whether the user can use WebAuthn redirection for passwordless login to websites within the streaming session.

.NET
Go
Java
Python
TypeScript