interface LocalizedBrandingStringsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpacesWeb.CfnUserSettings.LocalizedBrandingStringsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesweb#CfnUserSettings_LocalizedBrandingStringsProperty |
Java | software.amazon.awscdk.services.workspacesweb.CfnUserSettings.LocalizedBrandingStringsProperty |
Python | aws_cdk.aws_workspacesweb.CfnUserSettings.LocalizedBrandingStringsProperty |
TypeScript | aws-cdk-lib » aws_workspacesweb » CfnUserSettings » LocalizedBrandingStringsProperty |
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 { aws_workspacesweb as workspacesweb } from 'aws-cdk-lib';
const localizedBrandingStringsProperty: workspacesweb.CfnUserSettings.LocalizedBrandingStringsProperty = {
browserTabTitle: 'browserTabTitle',
welcomeText: 'welcomeText',
// the properties below are optional
contactButtonText: 'contactButtonText',
contactLink: 'contactLink',
loadingText: 'loadingText',
loginButtonText: 'loginButtonText',
loginDescription: 'loginDescription',
loginTitle: 'loginTitle',
};
Properties
| Name | Type | Description |
|---|---|---|
| browser | string | The text displayed in the browser tab title. |
| welcome | string | The welcome text displayed on the sign-in page. |
| contact | string | The text displayed on the contact button. |
| contact | string | A contact link URL. |
| loading | string | The text displayed during session loading. |
| login | string | The text displayed on the login button. |
| login | string | The description text for the login section. |
| login | string | The title text for the login section. |
browserTabTitle
Type:
string
The text displayed in the browser tab title.
welcomeText
Type:
string
The welcome text displayed on the sign-in page.
contactButtonText?
Type:
string
(optional)
The text displayed on the contact button.
This field is optional and defaults to "Contact us".
contactLink?
Type:
string
(optional)
A contact link URL.
The URL must start with https:// or mailto: . If not provided, the contact button will be hidden from the web portal screen.
loadingText?
Type:
string
(optional)
The text displayed during session loading.
This field is optional and defaults to "Loading your session".
loginButtonText?
Type:
string
(optional)
The text displayed on the login button.
This field is optional and defaults to "Sign In".
loginDescription?
Type:
string
(optional)
The description text for the login section.
This field is optional and defaults to "Sign in to your session".
loginTitle?
Type:
string
(optional)
The title text for the login section.
This field is optional and defaults to "Sign In".

.NET
Go
Java
Python
TypeScript