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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserSettings.BrandingConfigurationPropertystatic final classAn implementation forCfnUserSettings.BrandingConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Stringdefault Stringdefault ObjectReturns union: eitherIResolvableorCfnUserSettings.ImageMetadataPropertydefault ObjectReturns union: eitherIResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnUserSettings.LocalizedBrandingStringsProperty>default StringgetLogo()default ObjectReturns union: eitherIResolvableorCfnUserSettings.ImageMetadataPropertydefault Stringdefault Stringdefault ObjectReturns union: eitherIResolvableorCfnUserSettings.ImageMetadataPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getColorTheme
- See Also:
-
getFavicon
- See Also:
-
getFaviconMetadata
Returns union: eitherIResolvableorCfnUserSettings.ImageMetadataProperty- See Also:
-
getLocalizedStrings
Returns union: eitherIResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnUserSettings.LocalizedBrandingStringsProperty>- See Also:
-
getLogo
- See Also:
-
getLogoMetadata
Returns union: eitherIResolvableorCfnUserSettings.ImageMetadataProperty- See Also:
-
getTermsOfService
- See Also:
-
getWallpaper
- See Also:
-
getWallpaperMetadata
Returns union: eitherIResolvableorCfnUserSettings.ImageMetadataProperty- See Also:
-
builder
-