Struct aws_sdk_iotfleetwise::input::UpdateVehicleInput
source · #[non_exhaustive]pub struct UpdateVehicleInput { /* private fields */ }
Implementations§
source§impl UpdateVehicleInput
impl UpdateVehicleInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateVehicle, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateVehicle, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateVehicle
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateVehicleInput
.
source§impl UpdateVehicleInput
impl UpdateVehicleInput
sourcepub fn vehicle_name(&self) -> Option<&str>
pub fn vehicle_name(&self) -> Option<&str>
The unique ID of the vehicle to update.
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 the decoder manifest associated with this 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 attribute_update_mode(&self) -> Option<&UpdateMode>
pub fn attribute_update_mode(&self) -> Option<&UpdateMode>
The method the specified attributes will update the existing attributes on the vehicle. UseOverwite
to replace the vehicle attributes with the specified attributes. Or use Merge
to combine all attributes.
This is required if attributes are present in the input.
Trait Implementations§
source§impl Clone for UpdateVehicleInput
impl Clone for UpdateVehicleInput
source§fn clone(&self) -> UpdateVehicleInput
fn clone(&self) -> UpdateVehicleInput
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 UpdateVehicleInput
impl Debug for UpdateVehicleInput
source§impl PartialEq<UpdateVehicleInput> for UpdateVehicleInput
impl PartialEq<UpdateVehicleInput> for UpdateVehicleInput
source§fn eq(&self, other: &UpdateVehicleInput) -> bool
fn eq(&self, other: &UpdateVehicleInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.