#[non_exhaustive]pub struct ThemeVersionSummaryBuilder { /* private fields */ }Expand description
A builder for ThemeVersionSummary.
Implementations§
source§impl ThemeVersionSummaryBuilder
impl ThemeVersionSummaryBuilder
sourcepub fn version_number(self, input: i64) -> Self
pub fn version_number(self, input: i64) -> Self
The version number of the theme version.
sourcepub fn set_version_number(self, input: Option<i64>) -> Self
pub fn set_version_number(self, input: Option<i64>) -> Self
The version number of the theme version.
sourcepub fn get_version_number(&self) -> &Option<i64>
pub fn get_version_number(&self) -> &Option<i64>
The version number of the theme version.
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the theme version.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the theme version.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the theme version.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the theme version.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the theme version.
sourcepub fn created_time(self, input: DateTime) -> Self
pub fn created_time(self, input: DateTime) -> Self
The date and time that this theme version was created.
sourcepub fn set_created_time(self, input: Option<DateTime>) -> Self
pub fn set_created_time(self, input: Option<DateTime>) -> Self
The date and time that this theme version was created.
sourcepub fn get_created_time(&self) -> &Option<DateTime>
pub fn get_created_time(&self) -> &Option<DateTime>
The date and time that this theme version was created.
sourcepub fn status(self, input: ResourceStatus) -> Self
pub fn status(self, input: ResourceStatus) -> Self
The status of the theme version.
sourcepub fn set_status(self, input: Option<ResourceStatus>) -> Self
pub fn set_status(self, input: Option<ResourceStatus>) -> Self
The status of the theme version.
sourcepub fn get_status(&self) -> &Option<ResourceStatus>
pub fn get_status(&self) -> &Option<ResourceStatus>
The status of the theme version.
sourcepub fn build(self) -> ThemeVersionSummary
pub fn build(self) -> ThemeVersionSummary
Consumes the builder and constructs a ThemeVersionSummary.
Trait Implementations§
source§impl Clone for ThemeVersionSummaryBuilder
impl Clone for ThemeVersionSummaryBuilder
source§fn clone(&self) -> ThemeVersionSummaryBuilder
fn clone(&self) -> ThemeVersionSummaryBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ThemeVersionSummaryBuilder
impl Debug for ThemeVersionSummaryBuilder
source§impl Default for ThemeVersionSummaryBuilder
impl Default for ThemeVersionSummaryBuilder
source§fn default() -> ThemeVersionSummaryBuilder
fn default() -> ThemeVersionSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ThemeVersionSummaryBuilder
impl PartialEq for ThemeVersionSummaryBuilder
source§fn eq(&self, other: &ThemeVersionSummaryBuilder) -> bool
fn eq(&self, other: &ThemeVersionSummaryBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ThemeVersionSummaryBuilder
Auto Trait Implementations§
impl Freeze for ThemeVersionSummaryBuilder
impl RefUnwindSafe for ThemeVersionSummaryBuilder
impl Send for ThemeVersionSummaryBuilder
impl Sync for ThemeVersionSummaryBuilder
impl Unpin for ThemeVersionSummaryBuilder
impl UnwindSafe for ThemeVersionSummaryBuilder
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.