Module Values.UpdateThemeForStackRequestSource

Updates custom branding that customizes the appearance of the streaming application catalog page.

Sourcetype nonrec t = {
  1. stackName : Name.t;
    (*

    The name of the stack for the theme.

    *)
  2. titleText : ThemeTitleText.t option;
    (*

    The title that is displayed at the top of the browser tab during users' application streaming sessions.

    *)
  3. themeStyling : ThemeStyling.t option;
    (*

    The color theme that is applied to website links, text, and buttons. These colors are also applied as accents in the background for the streaming application catalog page.

    *)
  4. organizationLogoS3Location : S3Location.t option;
    (*

    The organization logo that appears on the streaming application catalog page.

    *)
  5. faviconS3Location : S3Location.t option;
    (*

    The S3 location of the favicon. The favicon enables users to recognize their application streaming site in a browser full of tabs or bookmarks. It is displayed at the top of the browser tab for the application streaming site during users' streaming sessions.

    *)
  6. state : ThemeState.t option;
    (*

    Specifies whether custom branding should be applied to catalog page or not.

    *)
  7. attributesToDelete : ThemeAttributes.t option;
    (*

    The attributes to delete.

    *)
}
Sourceval context_ : string
Sourceval make : ?footerLinks:??? -> ?titleText:??? -> ?themeStyling:??? -> ?organizationLogoS3Location:??? -> ?faviconS3Location:??? -> ?state:??? -> ?attributesToDelete:??? -> stackName:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `String of ThemeFooterLinkDisplayName.t ]) list ] list | `String of Name.t | `Structure of (string * [> `String of S3Bucket.t ]) list ]) 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