Struct aws_sdk_robomaker::types::TemplateSummary
source · #[non_exhaustive]pub struct TemplateSummary {
pub arn: Option<String>,
pub created_at: Option<DateTime>,
pub last_updated_at: Option<DateTime>,
pub name: Option<String>,
pub version: Option<String>,
}Expand description
Summary information for a template.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.arn: Option<String>The Amazon Resource Name (ARN) of the template.
created_at: Option<DateTime>The time, in milliseconds since the epoch, when the template was created.
last_updated_at: Option<DateTime>The time, in milliseconds since the epoch, when the template was last updated.
name: Option<String>The name of the template.
version: Option<String>The version of the template that you're using.
Implementations§
source§impl TemplateSummary
impl TemplateSummary
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The time, in milliseconds since the epoch, when the template was created.
sourcepub fn last_updated_at(&self) -> Option<&DateTime>
pub fn last_updated_at(&self) -> Option<&DateTime>
The time, in milliseconds since the epoch, when the template was last updated.
source§impl TemplateSummary
impl TemplateSummary
sourcepub fn builder() -> TemplateSummaryBuilder
pub fn builder() -> TemplateSummaryBuilder
Creates a new builder-style object to manufacture TemplateSummary.
Trait Implementations§
source§impl Clone for TemplateSummary
impl Clone for TemplateSummary
source§fn clone(&self) -> TemplateSummary
fn clone(&self) -> TemplateSummary
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 TemplateSummary
impl Debug for TemplateSummary
source§impl PartialEq for TemplateSummary
impl PartialEq for TemplateSummary
source§fn eq(&self, other: &TemplateSummary) -> bool
fn eq(&self, other: &TemplateSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TemplateSummary
Auto Trait Implementations§
impl RefUnwindSafe for TemplateSummary
impl Send for TemplateSummary
impl Sync for TemplateSummary
impl Unpin for TemplateSummary
impl UnwindSafe for TemplateSummary
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> 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>
Creates a shared type from an unshared type.