Module Values.DescribedWebAppCustomizationSource

A structure that contains the customization fields for the web app. You can provide a title, logo, and icon to customize the appearance of your web app.

Sourcetype nonrec t = {
  1. arn : Arn.t option;
    (*

    Returns the Amazon Resource Name (ARN) for the web app.

    *)
  2. webAppId : WebAppId.t option;
    (*

    Returns the unique identifier for your web app.

    *)
  3. title : WebAppTitle.t option;
    (*

    Returns the page title that you defined for your web app.

    *)
  4. logoFile : WebAppLogoFile.t option;
    (*

    Returns a logo file data string (in base64 encoding).

    *)
  5. faviconFile : WebAppFaviconFile.t option;
    (*

    Returns an icon file data string (in base64 encoding).

    *)
}
Sourceval make : ?arn:??? -> ?webAppId:??? -> ?title:??? -> ?logoFile:??? -> ?faviconFile:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of WebAppLogoFile.t | `String of Arn.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