Module Values.CustomizationConfigurationSource

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.

Sourcetype nonrec t = {
  1. customCSSUrl : CustomCSSUrl.t option;
    (*

    Provides the URL where the custom CSS file is hosted for an Amazon Q web experience.

    *)
  2. logoUrl : LogoUrl.t option;
    (*

    Provides the URL where the custom logo file is hosted for an Amazon Q web experience.

    *)
  3. fontUrl : FontUrl.t option;
    (*

    Provides the URL where the custom font file is hosted for an Amazon Q web experience.

    *)
  4. faviconUrl : FaviconUrl.t option;
    (*

    Provides the URL where the custom favicon file is hosted for an Amazon Q web experience.

    *)
}
Sourceval make : ?customCSSUrl:??? -> ?logoUrl:??? -> ?fontUrl:??? -> ?faviconUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CustomCSSUrl.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t