interface BrandingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpacesWeb.CfnUserSettings.BrandingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesweb#CfnUserSettings_BrandingConfigurationProperty |
Java | software.amazon.awscdk.services.workspacesweb.CfnUserSettings.BrandingConfigurationProperty |
Python | aws_cdk.aws_workspacesweb.CfnUserSettings.BrandingConfigurationProperty |
TypeScript | aws-cdk-lib » aws_workspacesweb » CfnUserSettings » BrandingConfigurationProperty |
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 brandingConfigurationProperty: workspacesweb.CfnUserSettings.BrandingConfigurationProperty = {
colorTheme: 'colorTheme',
favicon: 'favicon',
faviconMetadata: {
fileExtension: 'fileExtension',
lastUploadTimestamp: 'lastUploadTimestamp',
mimeType: 'mimeType',
},
localizedStrings: {
localizedStringsKey: {
browserTabTitle: 'browserTabTitle',
welcomeText: 'welcomeText',
// the properties below are optional
contactButtonText: 'contactButtonText',
contactLink: 'contactLink',
loadingText: 'loadingText',
loginButtonText: 'loginButtonText',
loginDescription: 'loginDescription',
loginTitle: 'loginTitle',
},
},
logo: 'logo',
logoMetadata: {
fileExtension: 'fileExtension',
lastUploadTimestamp: 'lastUploadTimestamp',
mimeType: 'mimeType',
},
termsOfService: 'termsOfService',
wallpaper: 'wallpaper',
wallpaperMetadata: {
fileExtension: 'fileExtension',
lastUploadTimestamp: 'lastUploadTimestamp',
mimeType: 'mimeType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| color | string | |
| favicon? | string | |
| favicon | IResolvable | Image | |
| localized | IResolvable | { [string]: IResolvable | Localized } | |
| logo? | string | |
| logo | IResolvable | Image | |
| terms | string | |
| wallpaper? | string | |
| wallpaper | IResolvable | Image |
colorTheme?
Type:
string
(optional)
favicon?
Type:
string
(optional)
faviconMetadata?
Type:
IResolvable | Image
(optional)
localizedStrings?
Type:
IResolvable | { [string]: IResolvable | Localized }
(optional)
logo?
Type:
string
(optional)
logoMetadata?
Type:
IResolvable | Image
(optional)
termsOfService?
Type:
string
(optional)
wallpaper?
Type:
string
(optional)
wallpaperMetadata?
Type:
IResolvable | Image
(optional)

.NET
Go
Java
Python
TypeScript