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
Localized text strings for a specific language that customize the web portal.
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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserSettings.LocalizedBrandingStringsPropertystatic final classAn implementation forCfnUserSettings.LocalizedBrandingStringsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The text displayed in the browser tab title.default StringThe text displayed on the contact button.default StringA contact link URL.default StringThe text displayed during session loading.default StringThe text displayed on the login button.default StringThe description text for the login section.default StringThe title text for the login section.The welcome text displayed on the sign-in page.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBrowserTabTitle
The text displayed in the browser tab title.- See Also:
-
getWelcomeText
The welcome text displayed on the sign-in page.- See Also:
-
getContactButtonText
The text displayed on the contact button.This field is optional and defaults to "Contact us".
- See Also:
-
getContactLink
A contact link URL.The URL must start with
https://ormailto:. If not provided, the contact button will be hidden from the web portal screen.- See Also:
-
getLoadingText
The text displayed during session loading.This field is optional and defaults to "Loading your session".
- See Also:
-
getLoginButtonText
The text displayed on the login button.This field is optional and defaults to "Sign In".
- See Also:
-
getLoginDescription
The description text for the login section.This field is optional and defaults to "Sign in to your session".
- See Also:
-
getLoginTitle
The title text for the login section.This field is optional and defaults to "Sign In".
- See Also:
-
builder
-