Interface CfnUserSettings.LocalizedBrandingStringsProperty

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

@Stability(Stable) public static interface CfnUserSettings.LocalizedBrandingStringsProperty 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.*;
 LocalizedBrandingStringsProperty localizedBrandingStringsProperty = LocalizedBrandingStringsProperty.builder()
         .browserTabTitle("browserTabTitle")
         .welcomeText("welcomeText")
         // the properties below are optional
         .contactButtonText("contactButtonText")
         .contactLink("contactLink")
         .loadingText("loadingText")
         .loginButtonText("loginButtonText")
         .loginDescription("loginDescription")
         .loginTitle("loginTitle")
         .build();
 

See Also: