Skip to content

Create Theme For Stack

appstream_create_theme_for_stack R Documentation

Creates custom branding that customizes the appearance of the streaming application catalog page

Description

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

Usage

appstream_create_theme_for_stack(StackName, FooterLinks, TitleText,
  ThemeStyling, OrganizationLogoS3Location, FaviconS3Location)

Arguments

StackName

[required] The name of the stack for the theme.

FooterLinks

The links that are displayed in the footer of the streaming application catalog page. These links are helpful resources for users, such as the organization's IT support and product marketing sites.

TitleText

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

ThemeStyling

[required] 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.

OrganizationLogoS3Location

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

FaviconS3Location

[required] 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.

Value

A list with the following syntax:

list(
  Theme = list(
    StackName = "string",
    State = "ENABLED"|"DISABLED",
    ThemeTitleText = "string",
    ThemeStyling = "LIGHT_BLUE"|"BLUE"|"PINK"|"RED",
    ThemeFooterLinks = list(
      list(
        DisplayName = "string",
        FooterLinkURL = "string"
      )
    ),
    ThemeOrganizationLogoURL = "string",
    ThemeFaviconURL = "string",
    CreatedTime = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$create_theme_for_stack(
  StackName = "string",
  FooterLinks = list(
    list(
      DisplayName = "string",
      FooterLinkURL = "string"
    )
  ),
  TitleText = "string",
  ThemeStyling = "LIGHT_BLUE"|"BLUE"|"PINK"|"RED",
  OrganizationLogoS3Location = list(
    S3Bucket = "string",
    S3Key = "string"
  ),
  FaviconS3Location = list(
    S3Bucket = "string",
    S3Key = "string"
  )
)