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
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: