Struct aws_sdk_iotfleetwise::types::ModelManifestSummary
source · #[non_exhaustive]pub struct ModelManifestSummary {
pub name: Option<String>,
pub arn: Option<String>,
pub signal_catalog_arn: Option<String>,
pub description: Option<String>,
pub status: Option<ManifestStatus>,
pub creation_time: DateTime,
pub last_modification_time: DateTime,
}
Expand description
Information about a vehicle model (model manifest). You can use the API operation to return this information about multiple vehicle models.
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.name: Option<String>
The name of the vehicle model.
arn: Option<String>
The Amazon Resource Name (ARN) of the vehicle model.
signal_catalog_arn: Option<String>
The ARN of the signal catalog associated with the vehicle model.
description: Option<String>
A brief description of the vehicle model.
status: 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.
creation_time: DateTime
The time the vehicle model was created, in seconds since epoch (January 1, 1970 at midnight UTC time).
last_modification_time: DateTime
The time the vehicle model was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).
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) -> &DateTime
pub fn creation_time(&self) -> &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) -> &DateTime
pub fn last_modification_time(&self) -> &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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModelManifestSummary
impl Debug for ModelManifestSummary
source§impl PartialEq for ModelManifestSummary
impl PartialEq for ModelManifestSummary
source§fn eq(&self, other: &ModelManifestSummary) -> bool
fn eq(&self, other: &ModelManifestSummary) -> bool
self
and other
values to be equal, and is used
by ==
.