Struct aws_sdk_iotfleetwise::types::ModelManifestSummary
source · #[non_exhaustive]pub struct ModelManifestSummary { /* private fields */ }Expand description
Information about a vehicle model (model manifest). You can use the API operation to return this information about multiple vehicle models.
Implementations§
source§impl ModelManifestSummary
impl ModelManifestSummary
sourcepub fn signal_catalog_arn(&self) -> Option<&str>
pub fn signal_catalog_arn(&self) -> Option<&str>
The ARN of the signal catalog associated with the vehicle model.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the vehicle model.
sourcepub fn status(&self) -> Option<&ManifestStatus>
pub fn status(&self) -> Option<&ManifestStatus>
The state of the vehicle model. If the status is ACTIVE, the vehicle model can't be edited. If the status is DRAFT, you can edit the vehicle model.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time the vehicle model was created, in seconds since epoch (January 1, 1970 at midnight UTC time).
sourcepub fn last_modification_time(&self) -> Option<&DateTime>
pub fn last_modification_time(&self) -> Option<&DateTime>
The time the vehicle model was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).
source§impl ModelManifestSummary
impl ModelManifestSummary
sourcepub fn builder() -> ModelManifestSummaryBuilder
pub fn builder() -> ModelManifestSummaryBuilder
Creates a new builder-style object to manufacture ModelManifestSummary.
Trait Implementations§
source§impl Clone for ModelManifestSummary
impl Clone for ModelManifestSummary
source§fn clone(&self) -> ModelManifestSummary
fn clone(&self) -> ModelManifestSummary
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 ModelManifestSummary
impl Debug for ModelManifestSummary
source§impl PartialEq<ModelManifestSummary> for ModelManifestSummary
impl PartialEq<ModelManifestSummary> for ModelManifestSummary
source§fn eq(&self, other: &ModelManifestSummary) -> bool
fn eq(&self, other: &ModelManifestSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ModelManifestSummary
Auto Trait Implementations§
impl RefUnwindSafe for ModelManifestSummary
impl Send for ModelManifestSummary
impl Sync for ModelManifestSummary
impl Unpin for ModelManifestSummary
impl UnwindSafe for ModelManifestSummary
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