Interface CfnUserSettingsProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserSettingsProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)", date="2025-12-18T18:20:19.664Z") @Stability(Stable) public interface CfnUserSettingsProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnUserSettings.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.workspacesweb.*;
 CfnUserSettingsProps cfnUserSettingsProps = CfnUserSettingsProps.builder()
         .copyAllowed("copyAllowed")
         .downloadAllowed("downloadAllowed")
         .pasteAllowed("pasteAllowed")
         .printAllowed("printAllowed")
         .uploadAllowed("uploadAllowed")
         // the properties below are optional
         .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")
                                 .welcomeText("welcomeText")
                                 // the properties below are optional
                                 .contactButtonText("contactButtonText")
                                 .contactLink("contactLink")
                                 .loadingText("loadingText")
                                 .loginButtonText("loginButtonText")
                                 .loginDescription("loginDescription")
                                 .loginTitle("loginTitle")
                                 .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")
                         // the properties below are optional
                         .name("name")
                         .path("path")
                         .build()))
                 // the properties below are optional
                 .blocklist(List.of(CookieSpecificationProperty.builder()
                         .domain("domain")
                         // the properties below are optional
                         .name("name")
                         .path("path")
                         .build()))
                 .build())
         .customerManagedKey("customerManagedKey")
         .deepLinkAllowed("deepLinkAllowed")
         .disconnectTimeoutInMinutes(123)
         .idleDisconnectTimeoutInMinutes(123)
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .toolbarConfiguration(ToolbarConfigurationProperty.builder()
                 .hiddenToolbarItems(List.of("hiddenToolbarItems"))
                 .maxDisplayResolution("maxDisplayResolution")
                 .toolbarType("toolbarType")
                 .visualMode("visualMode")
                 .build())
         .build();
 

See Also: