interface LocalizedBrandingStringsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnUserSettingsPropsMixin.LocalizedBrandingStringsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnUserSettingsPropsMixin_LocalizedBrandingStringsProperty |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnUserSettingsPropsMixin.LocalizedBrandingStringsProperty |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnUserSettingsPropsMixin.LocalizedBrandingStringsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnUserSettingsPropsMixin » 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 { mixins as workspacesweb_mixins } from '@aws-cdk/mixins-preview/aws-workspacesweb';
const localizedBrandingStringsProperty: workspacesweb_mixins.CfnUserSettingsPropsMixin.LocalizedBrandingStringsProperty = {
browserTabTitle: 'browserTabTitle',
contactButtonText: 'contactButtonText',
contactLink: 'contactLink',
loadingText: 'loadingText',
loginButtonText: 'loginButtonText',
loginDescription: 'loginDescription',
loginTitle: 'loginTitle',
welcomeText: 'welcomeText',
};
Properties
| Name | Type | Description |
|---|---|---|
| browser | string | The text displayed in the browser tab title. |
| 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. |
| welcome | string | The welcome text displayed on the sign-in page. |
browserTabTitle?
Type:
string
(optional)
The text displayed in the browser tab title.
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".
welcomeText?
Type:
string
(optional)
The welcome text displayed on the sign-in page.

.NET
Go
Java
Python
TypeScript