#[non_exhaustive]pub struct CreateVehicleRequestItem { /* private fields */ }
Expand description
Information about the vehicle to create.
Implementations§
source§impl CreateVehicleRequestItem
impl CreateVehicleRequestItem
sourcepub fn vehicle_name(&self) -> Option<&str>
pub fn vehicle_name(&self) -> Option<&str>
The unique ID of the vehicle to create.
sourcepub fn model_manifest_arn(&self) -> Option<&str>
pub fn model_manifest_arn(&self) -> Option<&str>
The ARN of the vehicle model (model manifest) to create the vehicle from.
sourcepub fn decoder_manifest_arn(&self) -> Option<&str>
pub fn decoder_manifest_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of a decoder manifest associated with the vehicle to create.
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: "engine Type"
: "v6"
sourcepub fn association_behavior(&self) -> Option<&VehicleAssociationBehavior>
pub fn association_behavior(&self) -> Option<&VehicleAssociationBehavior>
An option to create a new Amazon Web Services IoT thing when creating a vehicle, or to validate an existing thing as a vehicle.
Metadata which can be used to manage the vehicle.
source§impl CreateVehicleRequestItem
impl CreateVehicleRequestItem
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateVehicleRequestItem
.
Trait Implementations§
source§impl Clone for CreateVehicleRequestItem
impl Clone for CreateVehicleRequestItem
source§fn clone(&self) -> CreateVehicleRequestItem
fn clone(&self) -> CreateVehicleRequestItem
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 CreateVehicleRequestItem
impl Debug for CreateVehicleRequestItem
source§impl PartialEq<CreateVehicleRequestItem> for CreateVehicleRequestItem
impl PartialEq<CreateVehicleRequestItem> for CreateVehicleRequestItem
source§fn eq(&self, other: &CreateVehicleRequestItem) -> bool
fn eq(&self, other: &CreateVehicleRequestItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.