#[non_exhaustive]pub struct CreateThemeForStackInput {
pub stack_name: Option<String>,
pub footer_links: Option<Vec<ThemeFooterLink>>,
pub title_text: Option<String>,
pub theme_styling: Option<ThemeStyling>,
pub organization_logo_s3_location: Option<S3Location>,
pub favicon_s3_location: Option<S3Location>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.stack_name: Option<String>
The name of the stack for the theme.
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.
title_text: Option<String>
The title that is displayed at the top of the browser tab during users' application streaming sessions.
theme_styling: Option<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.
organization_logo_s3_location: Option<S3Location>
The organization logo that appears on the streaming application catalog page.
favicon_s3_location: Option<S3Location>
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.
Implementations§
source§impl CreateThemeForStackInput
impl CreateThemeForStackInput
sourcepub fn stack_name(&self) -> Option<&str>
pub fn stack_name(&self) -> Option<&str>
The name of the stack for the theme.
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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .footer_links.is_none()
.
sourcepub fn title_text(&self) -> Option<&str>
pub fn title_text(&self) -> Option<&str>
The title that is displayed at the top of the browser tab during users' application streaming sessions.
sourcepub fn theme_styling(&self) -> Option<&ThemeStyling>
pub fn theme_styling(&self) -> Option<&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.
sourcepub fn organization_logo_s3_location(&self) -> Option<&S3Location>
pub fn organization_logo_s3_location(&self) -> Option<&S3Location>
The organization logo that appears on the streaming application catalog page.
sourcepub fn favicon_s3_location(&self) -> Option<&S3Location>
pub fn favicon_s3_location(&self) -> Option<&S3Location>
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.
source§impl CreateThemeForStackInput
impl CreateThemeForStackInput
sourcepub fn builder() -> CreateThemeForStackInputBuilder
pub fn builder() -> CreateThemeForStackInputBuilder
Creates a new builder-style object to manufacture CreateThemeForStackInput
.
Trait Implementations§
source§impl Clone for CreateThemeForStackInput
impl Clone for CreateThemeForStackInput
source§fn clone(&self) -> CreateThemeForStackInput
fn clone(&self) -> CreateThemeForStackInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateThemeForStackInput
impl Debug for CreateThemeForStackInput
source§impl PartialEq for CreateThemeForStackInput
impl PartialEq for CreateThemeForStackInput
impl StructuralPartialEq for CreateThemeForStackInput
Auto Trait Implementations§
impl Freeze for CreateThemeForStackInput
impl RefUnwindSafe for CreateThemeForStackInput
impl Send for CreateThemeForStackInput
impl Sync for CreateThemeForStackInput
impl Unpin for CreateThemeForStackInput
impl UnwindSafe for CreateThemeForStackInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more