Struct aws_sdk_appstream::types::builders::ThemeBuilder
source · #[non_exhaustive]pub struct ThemeBuilder { /* private fields */ }
Expand description
A builder for Theme
.
Implementations§
source§impl ThemeBuilder
impl ThemeBuilder
sourcepub fn stack_name(self, input: impl Into<String>) -> Self
pub fn stack_name(self, input: impl Into<String>) -> Self
The stack that has the custom branding theme.
sourcepub fn set_stack_name(self, input: Option<String>) -> Self
pub fn set_stack_name(self, input: Option<String>) -> Self
The stack that has the custom branding theme.
sourcepub fn get_stack_name(&self) -> &Option<String>
pub fn get_stack_name(&self) -> &Option<String>
The stack that has the custom branding theme.
sourcepub fn state(self, input: ThemeState) -> Self
pub fn state(self, input: ThemeState) -> Self
The state of the theme.
sourcepub fn set_state(self, input: Option<ThemeState>) -> Self
pub fn set_state(self, input: Option<ThemeState>) -> Self
The state of the theme.
sourcepub fn get_state(&self) -> &Option<ThemeState>
pub fn get_state(&self) -> &Option<ThemeState>
The state of the theme.
sourcepub fn theme_title_text(self, input: impl Into<String>) -> Self
pub fn theme_title_text(self, input: impl Into<String>) -> Self
The browser tab page title.
sourcepub fn set_theme_title_text(self, input: Option<String>) -> Self
pub fn set_theme_title_text(self, input: Option<String>) -> Self
The browser tab page title.
sourcepub fn get_theme_title_text(&self) -> &Option<String>
pub fn get_theme_title_text(&self) -> &Option<String>
The browser tab page title.
sourcepub fn theme_styling(self, input: ThemeStyling) -> Self
pub fn theme_styling(self, input: ThemeStyling) -> Self
The color that is used for the website links, text, buttons, and catalog page background.
sourcepub fn set_theme_styling(self, input: Option<ThemeStyling>) -> Self
pub fn set_theme_styling(self, input: Option<ThemeStyling>) -> Self
The color that is used for the website links, text, buttons, and catalog page background.
sourcepub fn get_theme_styling(&self) -> &Option<ThemeStyling>
pub fn get_theme_styling(&self) -> &Option<ThemeStyling>
The color that is used for the website links, text, buttons, and catalog page background.
Appends an item to theme_footer_links
.
To override the contents of this collection use set_theme_footer_links
.
The website links that display in the catalog page footer.
The website links that display in the catalog page footer.
The website links that display in the catalog page footer.
sourcepub fn theme_organization_logo_url(self, input: impl Into<String>) -> Self
pub fn theme_organization_logo_url(self, input: impl Into<String>) -> Self
The URL of the logo that displays in the catalog page header.
sourcepub fn set_theme_organization_logo_url(self, input: Option<String>) -> Self
pub fn set_theme_organization_logo_url(self, input: Option<String>) -> Self
The URL of the logo that displays in the catalog page header.
sourcepub fn get_theme_organization_logo_url(&self) -> &Option<String>
pub fn get_theme_organization_logo_url(&self) -> &Option<String>
The URL of the logo that displays in the catalog page header.
sourcepub fn theme_favicon_url(self, input: impl Into<String>) -> Self
pub fn theme_favicon_url(self, input: impl Into<String>) -> Self
The URL of the icon that displays at the top of a user's browser tab during streaming sessions.
sourcepub fn set_theme_favicon_url(self, input: Option<String>) -> Self
pub fn set_theme_favicon_url(self, input: Option<String>) -> Self
The URL of the icon that displays at the top of a user's browser tab during streaming sessions.
sourcepub fn get_theme_favicon_url(&self) -> &Option<String>
pub fn get_theme_favicon_url(&self) -> &Option<String>
The URL of the icon that displays at the top of a user's browser tab during streaming sessions.
sourcepub fn created_time(self, input: DateTime) -> Self
pub fn created_time(self, input: DateTime) -> Self
The time the theme was created.
sourcepub fn set_created_time(self, input: Option<DateTime>) -> Self
pub fn set_created_time(self, input: Option<DateTime>) -> Self
The time the theme was created.
sourcepub fn get_created_time(&self) -> &Option<DateTime>
pub fn get_created_time(&self) -> &Option<DateTime>
The time the theme was created.
Trait Implementations§
source§impl Clone for ThemeBuilder
impl Clone for ThemeBuilder
source§fn clone(&self) -> ThemeBuilder
fn clone(&self) -> ThemeBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ThemeBuilder
impl Debug for ThemeBuilder
source§impl Default for ThemeBuilder
impl Default for ThemeBuilder
source§fn default() -> ThemeBuilder
fn default() -> ThemeBuilder
source§impl PartialEq for ThemeBuilder
impl PartialEq for ThemeBuilder
impl StructuralPartialEq for ThemeBuilder
Auto Trait Implementations§
impl Freeze for ThemeBuilder
impl RefUnwindSafe for ThemeBuilder
impl Send for ThemeBuilder
impl Sync for ThemeBuilder
impl Unpin for ThemeBuilder
impl UnwindSafe for ThemeBuilder
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