Describe Theme For Stack
appstream_describe_theme_for_stack | R Documentation |
Retrieves a list that describes the theme for a specified stack¶
Description¶
Retrieves a list that describes the theme for a specified stack. A theme is custom branding that customizes the appearance of the streaming application catalog page.
Usage¶
appstream_describe_theme_for_stack(StackName)
Arguments¶
StackName |
[required] The name of the stack for the theme. |
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$describe_theme_for_stack(
StackName = "string"
)