Interface CfnUserSettingsMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserSettingsMixinProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.workspacesweb.*;
CfnUserSettingsMixinProps cfnUserSettingsMixinProps = CfnUserSettingsMixinProps.builder()
.additionalEncryptionContext(Map.of(
"additionalEncryptionContextKey", "additionalEncryptionContext"))
.brandingConfiguration(BrandingConfigurationProperty.builder()
.colorTheme("colorTheme")
.favicon("favicon")
.faviconMetadata(ImageMetadataProperty.builder()
.fileExtension("fileExtension")
.lastUploadTimestamp("lastUploadTimestamp")
.mimeType("mimeType")
.build())
.localizedStrings(Map.of(
"localizedStringsKey", LocalizedBrandingStringsProperty.builder()
.browserTabTitle("browserTabTitle")
.contactButtonText("contactButtonText")
.contactLink("contactLink")
.loadingText("loadingText")
.loginButtonText("loginButtonText")
.loginDescription("loginDescription")
.loginTitle("loginTitle")
.welcomeText("welcomeText")
.build()))
.logo("logo")
.logoMetadata(ImageMetadataProperty.builder()
.fileExtension("fileExtension")
.lastUploadTimestamp("lastUploadTimestamp")
.mimeType("mimeType")
.build())
.termsOfService("termsOfService")
.wallpaper("wallpaper")
.wallpaperMetadata(ImageMetadataProperty.builder()
.fileExtension("fileExtension")
.lastUploadTimestamp("lastUploadTimestamp")
.mimeType("mimeType")
.build())
.build())
.cookieSynchronizationConfiguration(CookieSynchronizationConfigurationProperty.builder()
.allowlist(List.of(CookieSpecificationProperty.builder()
.domain("domain")
.name("name")
.path("path")
.build()))
.blocklist(List.of(CookieSpecificationProperty.builder()
.domain("domain")
.name("name")
.path("path")
.build()))
.build())
.copyAllowed("copyAllowed")
.customerManagedKey("customerManagedKey")
.deepLinkAllowed("deepLinkAllowed")
.disconnectTimeoutInMinutes(123)
.downloadAllowed("downloadAllowed")
.idleDisconnectTimeoutInMinutes(123)
.pasteAllowed("pasteAllowed")
.printAllowed("printAllowed")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.toolbarConfiguration(ToolbarConfigurationProperty.builder()
.hiddenToolbarItems(List.of("hiddenToolbarItems"))
.maxDisplayResolution("maxDisplayResolution")
.toolbarType("toolbarType")
.visualMode("visualMode")
.build())
.uploadAllowed("uploadAllowed")
.webAuthnAllowed("webAuthnAllowed")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserSettingsMixinPropsstatic final classAn implementation forCfnUserSettingsMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe additional encryption context of the user settings.default ObjectThe branding configuration that customizes the appearance of the web portal for end users.default ObjectThe configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.default StringSpecifies whether the user can copy text from the streaming session to the local device.default StringThe customer managed key used to encrypt sensitive information in the user settings.default StringSpecifies whether the user can use deep links that open automatically when connecting to a session.default NumberThe amount of time that a streaming session remains active after users disconnect.default StringSpecifies whether the user can download files from the streaming session to the local device.default NumberThe amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins.default StringSpecifies whether the user can paste text from the local device to the streaming session.default StringSpecifies whether the user can print to the local device.getTags()The tags to add to the user settings resource.default ObjectThe configuration of the toolbar.default StringSpecifies whether the user can upload files from the local device to the streaming session.default StringSpecifies whether the user can use WebAuthn redirection for passwordless login to websites within the streaming session.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdditionalEncryptionContext
The additional encryption context of the user settings.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getBrandingConfiguration
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.
Returns union: either
IResolvableorCfnUserSettingsPropsMixin.BrandingConfigurationProperty- See Also:
-
getCookieSynchronizationConfiguration
The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.Returns union: either
IResolvableorCfnUserSettingsPropsMixin.CookieSynchronizationConfigurationProperty- See Also:
-
getCopyAllowed
Specifies whether the user can copy text from the streaming session to the local device.- See Also:
-
getCustomerManagedKey
The customer managed key used to encrypt sensitive information in the user settings.- See Also:
-
getDeepLinkAllowed
Specifies whether the user can use deep links that open automatically when connecting to a session.- See Also:
-
getDisconnectTimeoutInMinutes
The amount of time that a streaming session remains active after users disconnect.- See Also:
-
getDownloadAllowed
Specifies whether the user can download files from the streaming session to the local device.- See Also:
-
getIdleDisconnectTimeoutInMinutes
The amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins.- See Also:
-
getPasteAllowed
Specifies whether the user can paste text from the local device to the streaming session.- See Also:
-
getPrintAllowed
Specifies whether the user can print to the local device.- See Also:
-
getTags
The tags to add to the user settings resource.A tag is a key-value pair.
- See Also:
-
getToolbarConfiguration
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.
Returns union: either
IResolvableorCfnUserSettingsPropsMixin.ToolbarConfigurationProperty- See Also:
-
getUploadAllowed
Specifies whether the user can upload files from the local device to the streaming session.- See Also:
-
getWebAuthnAllowed
Specifies whether the user can use WebAuthn redirection for passwordless login to websites within the streaming session.- See Also:
-
builder
- Returns:
- a
CfnUserSettingsMixinProps.BuilderofCfnUserSettingsMixinProps
-