Struct aws_sdk_iotfleetwise::types::VehicleSummary
source · #[non_exhaustive]pub struct VehicleSummary { /* private fields */ }Expand description
Information about a vehicle.
To return this information about vehicles in your account, you can use the API operation.
Implementations§
source§impl VehicleSummary
impl VehicleSummary
sourcepub fn vehicle_name(&self) -> Option<&str>
pub fn vehicle_name(&self) -> Option<&str>
The unique ID of the vehicle.
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 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 VehicleSummary
impl VehicleSummary
sourcepub fn builder() -> VehicleSummaryBuilder
pub fn builder() -> VehicleSummaryBuilder
Creates a new builder-style object to manufacture VehicleSummary.
Trait Implementations§
source§impl Clone for VehicleSummary
impl Clone for VehicleSummary
source§fn clone(&self) -> VehicleSummary
fn clone(&self) -> VehicleSummary
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 VehicleSummary
impl Debug for VehicleSummary
source§impl PartialEq<VehicleSummary> for VehicleSummary
impl PartialEq<VehicleSummary> for VehicleSummary
source§fn eq(&self, other: &VehicleSummary) -> bool
fn eq(&self, other: &VehicleSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for VehicleSummary
Auto Trait Implementations§
impl RefUnwindSafe for VehicleSummary
impl Send for VehicleSummary
impl Sync for VehicleSummary
impl Unpin for VehicleSummary
impl UnwindSafe for VehicleSummary
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