#[non_exhaustive]pub struct GetVehicleOutput {
pub vehicle_name: Option<String>,
pub arn: Option<String>,
pub model_manifest_arn: Option<String>,
pub decoder_manifest_arn: Option<String>,
pub attributes: Option<HashMap<String, String>>,
pub creation_time: Option<DateTime>,
pub last_modification_time: Option<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.vehicle_name: Option<String>
The ID of the vehicle.
arn: Option<String>
The Amazon Resource Name (ARN) of the vehicle to retrieve information about.
model_manifest_arn: Option<String>
The ARN of a vehicle model (model manifest) associated with the vehicle.
decoder_manifest_arn: Option<String>
The ARN of a decoder manifest associated with the vehicle.
attributes: Option<HashMap<String, String>>
Static information about a vehicle in a key-value pair. For example:
"engineType"
: "1.3 L R2"
creation_time: Option<DateTime>
The time the vehicle was created in seconds since epoch (January 1, 1970 at midnight UTC time).
last_modification_time: Option<DateTime>
The time the vehicle was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).
Implementations§
source§impl GetVehicleOutput
impl GetVehicleOutput
sourcepub fn vehicle_name(&self) -> Option<&str>
pub fn vehicle_name(&self) -> Option<&str>
The ID of the vehicle.
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the vehicle to retrieve information about.
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 vehicle.
sourcepub fn decoder_manifest_arn(&self) -> Option<&str>
pub fn decoder_manifest_arn(&self) -> Option<&str>
The ARN of a decoder manifest associated with the vehicle.
sourcepub fn attributes(&self) -> Option<&HashMap<String, String>>
pub fn attributes(&self) -> Option<&HashMap<String, String>>
Static information about a vehicle in a key-value pair. For example:
"engineType"
: "1.3 L R2"
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time the vehicle 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 was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).
source§impl GetVehicleOutput
impl GetVehicleOutput
sourcepub fn builder() -> GetVehicleOutputBuilder
pub fn builder() -> GetVehicleOutputBuilder
Creates a new builder-style object to manufacture GetVehicleOutput
.
Trait Implementations§
source§impl Clone for GetVehicleOutput
impl Clone for GetVehicleOutput
source§fn clone(&self) -> GetVehicleOutput
fn clone(&self) -> GetVehicleOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetVehicleOutput
impl Debug for GetVehicleOutput
source§impl PartialEq for GetVehicleOutput
impl PartialEq for GetVehicleOutput
source§fn eq(&self, other: &GetVehicleOutput) -> bool
fn eq(&self, other: &GetVehicleOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetVehicleOutput
impl RequestId for GetVehicleOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.