#[non_exhaustive]pub struct GetModelManifestOutput {
pub name: String,
pub arn: String,
pub description: Option<String>,
pub signal_catalog_arn: Option<String>,
pub status: Option<ManifestStatus>,
pub creation_time: DateTime,
pub last_modification_time: DateTime,
/* private fields */
}
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: String
The name of the vehicle model.
arn: String
The Amazon Resource Name (ARN) of the vehicle model.
description: Option<String>
A brief description of the vehicle model.
signal_catalog_arn: Option<String>
The ARN of the signal catalog associated with the vehicle model.
status: Option<ManifestStatus>
The state of the vehicle model. If the status is ACTIVE
, the vehicle model can't be edited. You can edit the vehicle model if the status is marked DRAFT
.
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 last time the vehicle model was modified.
Implementations§
source§impl GetModelManifestOutput
impl GetModelManifestOutput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the vehicle model.
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 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. You can edit the vehicle model if the status is marked DRAFT
.
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 last time the vehicle model was modified.
source§impl GetModelManifestOutput
impl GetModelManifestOutput
sourcepub fn builder() -> GetModelManifestOutputBuilder
pub fn builder() -> GetModelManifestOutputBuilder
Creates a new builder-style object to manufacture GetModelManifestOutput
.
Trait Implementations§
source§impl Clone for GetModelManifestOutput
impl Clone for GetModelManifestOutput
source§fn clone(&self) -> GetModelManifestOutput
fn clone(&self) -> GetModelManifestOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetModelManifestOutput
impl Debug for GetModelManifestOutput
source§impl PartialEq for GetModelManifestOutput
impl PartialEq for GetModelManifestOutput
source§fn eq(&self, other: &GetModelManifestOutput) -> bool
fn eq(&self, other: &GetModelManifestOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetModelManifestOutput
impl RequestId for GetModelManifestOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.