#[non_exhaustive]pub struct GetVehicleOutput { /* private fields */ }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
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 GetVehicleOutput
impl Debug for GetVehicleOutput
source§impl PartialEq<GetVehicleOutput> for GetVehicleOutput
impl PartialEq<GetVehicleOutput> for GetVehicleOutput
source§fn eq(&self, other: &GetVehicleOutput) -> bool
fn eq(&self, other: &GetVehicleOutput) -> bool
This method tests for
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>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetVehicleOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetVehicleOutput
impl Send for GetVehicleOutput
impl Sync for GetVehicleOutput
impl Unpin for GetVehicleOutput
impl UnwindSafe for GetVehicleOutput
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