Struct aws_sdk_nimble::types::StudioComponentSummary
source · #[non_exhaustive]pub struct StudioComponentSummary {
pub created_at: Option<DateTime>,
pub created_by: Option<String>,
pub description: Option<String>,
pub name: Option<String>,
pub studio_component_id: Option<String>,
pub subtype: Option<StudioComponentSubtype>,
pub type: Option<StudioComponentType>,
pub updated_at: Option<DateTime>,
pub updated_by: Option<String>,
}
Expand description
The studio component's summary.
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.created_at: Option<DateTime>
The ISO timestamp in seconds for when the resource was created.
created_by: Option<String>
The user ID of the user that created the studio component.
description: Option<String>
The description.
name: Option<String>
The name for the studio component.
studio_component_id: Option<String>
The unique identifier for a studio component resource.
subtype: Option<StudioComponentSubtype>
The specific subtype of a studio component.
type: Option<StudioComponentType>
The type of the studio component.
updated_at: Option<DateTime>
The ISO timestamp in seconds for when the resource was updated.
updated_by: Option<String>
The user ID of the user that most recently updated the resource.
Implementations§
source§impl StudioComponentSummary
impl StudioComponentSummary
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The ISO timestamp in seconds for when the resource was created.
sourcepub fn created_by(&self) -> Option<&str>
pub fn created_by(&self) -> Option<&str>
The user ID of the user that created the studio component.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description.
sourcepub fn studio_component_id(&self) -> Option<&str>
pub fn studio_component_id(&self) -> Option<&str>
The unique identifier for a studio component resource.
sourcepub fn subtype(&self) -> Option<&StudioComponentSubtype>
pub fn subtype(&self) -> Option<&StudioComponentSubtype>
The specific subtype of a studio component.
sourcepub fn type(&self) -> Option<&StudioComponentType>
pub fn type(&self) -> Option<&StudioComponentType>
The type of the studio component.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The ISO timestamp in seconds for when the resource was updated.
sourcepub fn updated_by(&self) -> Option<&str>
pub fn updated_by(&self) -> Option<&str>
The user ID of the user that most recently updated the resource.
source§impl StudioComponentSummary
impl StudioComponentSummary
sourcepub fn builder() -> StudioComponentSummaryBuilder
pub fn builder() -> StudioComponentSummaryBuilder
Creates a new builder-style object to manufacture StudioComponentSummary
.
Trait Implementations§
source§impl Clone for StudioComponentSummary
impl Clone for StudioComponentSummary
source§fn clone(&self) -> StudioComponentSummary
fn clone(&self) -> StudioComponentSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StudioComponentSummary
impl Debug for StudioComponentSummary
source§impl PartialEq for StudioComponentSummary
impl PartialEq for StudioComponentSummary
source§fn eq(&self, other: &StudioComponentSummary) -> bool
fn eq(&self, other: &StudioComponentSummary) -> bool
self
and other
values to be equal, and is used
by ==
.