pub struct DescribeThemeRequest {
pub alias_name: Option<String>,
pub aws_account_id: String,
pub theme_id: String,
pub version_number: Option<i64>,
}Fields§
§alias_name: Option<String>The alias of the theme that you want to describe. If you name a specific alias, you describe the version that the alias points to. You can specify the latest version of the theme by providing the keyword $LATEST in the AliasName parameter. The keyword $PUBLISHED doesn't apply to themes.
aws_account_id: StringThe ID of the AWS account that contains the theme that you're describing.
theme_id: StringThe ID for the theme.
version_number: Option<i64>The version number for the version to describe. If a VersionNumber parameter value isn't provided, the latest version of the theme is described.
Trait Implementations§
Source§impl Clone for DescribeThemeRequest
impl Clone for DescribeThemeRequest
Source§fn clone(&self) -> DescribeThemeRequest
fn clone(&self) -> DescribeThemeRequest
Returns a duplicate 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 DescribeThemeRequest
impl Debug for DescribeThemeRequest
Source§impl Default for DescribeThemeRequest
impl Default for DescribeThemeRequest
Source§fn default() -> DescribeThemeRequest
fn default() -> DescribeThemeRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeThemeRequest
impl PartialEq for DescribeThemeRequest
Source§impl Serialize for DescribeThemeRequest
impl Serialize for DescribeThemeRequest
impl StructuralPartialEq for DescribeThemeRequest
Auto Trait Implementations§
impl Freeze for DescribeThemeRequest
impl RefUnwindSafe for DescribeThemeRequest
impl Send for DescribeThemeRequest
impl Sync for DescribeThemeRequest
impl Unpin for DescribeThemeRequest
impl UnwindSafe for DescribeThemeRequest
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