interface CustomizationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QBusiness.Mixins.CfnWebExperiencePropsMixin.CustomizationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqbusiness/mixins#CfnWebExperiencePropsMixin_CustomizationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.CfnWebExperiencePropsMixin.CustomizationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_qbusiness.mixins.CfnWebExperiencePropsMixin.CustomizationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_qbusiness » mixins » CfnWebExperiencePropsMixin » CustomizationConfigurationProperty |
Contains the configuration information to customize the logo, font, and color of an Amazon Q Business web experience with individual files for each property or a CSS file for them all.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as qbusiness_mixins } from '@aws-cdk/mixins-preview/aws-qbusiness';
const customizationConfigurationProperty: qbusiness_mixins.CfnWebExperiencePropsMixin.CustomizationConfigurationProperty = {
customCssUrl: 'customCssUrl',
faviconUrl: 'faviconUrl',
fontUrl: 'fontUrl',
logoUrl: 'logoUrl',
};
Properties
| Name | Type | Description |
|---|---|---|
| custom | string | Provides the URL where the custom CSS file is hosted for an Amazon Q web experience. |
| favicon | string | Provides the URL where the custom favicon file is hosted for an Amazon Q web experience. |
| font | string | Provides the URL where the custom font file is hosted for an Amazon Q web experience. |
| logo | string | Provides the URL where the custom logo file is hosted for an Amazon Q web experience. |
customCssUrl?
Type:
string
(optional)
Provides the URL where the custom CSS file is hosted for an Amazon Q web experience.
faviconUrl?
Type:
string
(optional)
Provides the URL where the custom favicon file is hosted for an Amazon Q web experience.
fontUrl?
Type:
string
(optional)
Provides the URL where the custom font file is hosted for an Amazon Q web experience.
logoUrl?
Type:
string
(optional)
Provides the URL where the custom logo file is hosted for an Amazon Q web experience.

.NET
Go
Java
Python
TypeScript