Interface CfnWebExperiencePropsMixin.CustomizationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWebExperiencePropsMixin.CustomizationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnWebExperiencePropsMixin
@Stability(Stable)
public static interface CfnWebExperiencePropsMixin.CustomizationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.qbusiness.*;
CustomizationConfigurationProperty customizationConfigurationProperty = CustomizationConfigurationProperty.builder()
.customCssUrl("customCssUrl")
.faviconUrl("faviconUrl")
.fontUrl("fontUrl")
.logoUrl("logoUrl")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnWebExperiencePropsMixin.CustomizationConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringProvides the URL where the custom CSS file is hosted for an Amazon Q web experience.default StringProvides the URL where the custom favicon file is hosted for an Amazon Q web experience.default StringProvides the URL where the custom font file is hosted for an Amazon Q web experience.default StringProvides the URL where the custom logo file is hosted for an Amazon Q web experience.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCustomCssUrl
Provides the URL where the custom CSS file is hosted for an Amazon Q web experience.- See Also:
-
getFaviconUrl
Provides the URL where the custom favicon file is hosted for an Amazon Q web experience.- See Also:
-
getFontUrl
Provides the URL where the custom font file is hosted for an Amazon Q web experience.- See Also:
-
getLogoUrl
Provides the URL where the custom logo file is hosted for an Amazon Q web experience.- See Also:
-
builder
@Stability(Stable) static CfnWebExperiencePropsMixin.CustomizationConfigurationProperty.Builder builder()
-