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 ==.impl StructuralPartialEq for StudioComponentSummary
Auto Trait Implementations§
impl Freeze for StudioComponentSummary
impl RefUnwindSafe for StudioComponentSummary
impl Send for StudioComponentSummary
impl Sync for StudioComponentSummary
impl Unpin for StudioComponentSummary
impl UnwindSafe for StudioComponentSummary
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> 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