#[non_exhaustive]pub struct DecoderManifestSummary {
pub name: Option<String>,
pub arn: Option<String>,
pub model_manifest_arn: Option<String>,
pub description: Option<String>,
pub status: Option<ManifestStatus>,
pub creation_time: Option<DateTime>,
pub last_modification_time: Option<DateTime>,
}
Expand description
Information about a created decoder manifest. You can use the API operation to return this information about multiple decoder manifests.
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 decoder manifest.
arn: Option<String>
The ARN of a vehicle model (model manifest) associated with the decoder manifest.
model_manifest_arn: Option<String>
The ARN of a vehicle model (model manifest) associated with the decoder manifest.
description: Option<String>
A brief description of the decoder manifest.
status: Option<ManifestStatus>
The state of the decoder manifest. If the status is ACTIVE
, the decoder manifest can't be edited. If the status is marked DRAFT
, you can edit the decoder manifest.
creation_time: Option<DateTime>
The time the decoder manifest was created in seconds since epoch (January 1, 1970 at midnight UTC time).
last_modification_time: Option<DateTime>
The time the decoder manifest was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).
Implementations§
source§impl DecoderManifestSummary
impl DecoderManifestSummary
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The ARN of a vehicle model (model manifest) associated with the decoder manifest.
sourcepub fn model_manifest_arn(&self) -> Option<&str>
pub fn model_manifest_arn(&self) -> Option<&str>
The ARN of a vehicle model (model manifest) associated with the decoder manifest.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the decoder manifest.
sourcepub fn status(&self) -> Option<&ManifestStatus>
pub fn status(&self) -> Option<&ManifestStatus>
The state of the decoder manifest. If the status is ACTIVE
, the decoder manifest can't be edited. If the status is marked DRAFT
, you can edit the decoder manifest.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time the decoder manifest 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 decoder manifest was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).
source§impl DecoderManifestSummary
impl DecoderManifestSummary
sourcepub fn builder() -> DecoderManifestSummaryBuilder
pub fn builder() -> DecoderManifestSummaryBuilder
Creates a new builder-style object to manufacture DecoderManifestSummary
.
Trait Implementations§
source§impl Clone for DecoderManifestSummary
impl Clone for DecoderManifestSummary
source§fn clone(&self) -> DecoderManifestSummary
fn clone(&self) -> DecoderManifestSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DecoderManifestSummary
impl Debug for DecoderManifestSummary
source§impl PartialEq<DecoderManifestSummary> for DecoderManifestSummary
impl PartialEq<DecoderManifestSummary> for DecoderManifestSummary
source§fn eq(&self, other: &DecoderManifestSummary) -> bool
fn eq(&self, other: &DecoderManifestSummary) -> bool
self
and other
values to be equal, and is used
by ==
.