Interface CfnUserSettings.BrandingConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnUserSettings.BrandingConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnUserSettings

@Stability(Stable) public static interface CfnUserSettings.BrandingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.

The LogoMetadata , FaviconMetadata , and WallpaperMetadata properties are read-only and cannot be specified in your template. They are automatically populated by the service after you upload images and can be retrieved using the Fn::GetAtt intrinsic function.

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.*;
 BrandingConfigurationProperty brandingConfigurationProperty = 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();
 

See Also: