Update Theme For Stack
appstream_update_theme_for_stack | R Documentation |
Updates custom branding that customizes the appearance of the streaming application catalog page¶
Description¶
Updates custom branding that customizes the appearance of the streaming application catalog page.
Usage¶
appstream_update_theme_for_stack(StackName, FooterLinks, TitleText,
ThemeStyling, OrganizationLogoS3Location, FaviconS3Location, State,
AttributesToDelete)
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
The title that is displayed at the top of the browser tab during users' application streaming sessions.
ThemeStyling
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
The organization logo that appears on the streaming application catalog page.
FaviconS3Location
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.
State
Specifies whether custom branding should be applied to catalog page or not.
AttributesToDelete
The attributes to delete.
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$update_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"
),
State = "ENABLED"|"DISABLED",
AttributesToDelete = list(
"FOOTER_LINKS"
)
)