/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the updated vehicle.See Also:
AWS
* API Reference
The unique ID of the updated vehicle.
*/ inline const Aws::String& GetVehicleName() const{ return m_vehicleName; } /** *The unique ID of the updated vehicle.
*/ inline bool VehicleNameHasBeenSet() const { return m_vehicleNameHasBeenSet; } /** *The unique ID of the updated vehicle.
*/ inline void SetVehicleName(const Aws::String& value) { m_vehicleNameHasBeenSet = true; m_vehicleName = value; } /** *The unique ID of the updated vehicle.
*/ inline void SetVehicleName(Aws::String&& value) { m_vehicleNameHasBeenSet = true; m_vehicleName = std::move(value); } /** *The unique ID of the updated vehicle.
*/ inline void SetVehicleName(const char* value) { m_vehicleNameHasBeenSet = true; m_vehicleName.assign(value); } /** *The unique ID of the updated vehicle.
*/ inline UpdateVehicleResponseItem& WithVehicleName(const Aws::String& value) { SetVehicleName(value); return *this;} /** *The unique ID of the updated vehicle.
*/ inline UpdateVehicleResponseItem& WithVehicleName(Aws::String&& value) { SetVehicleName(std::move(value)); return *this;} /** *The unique ID of the updated vehicle.
*/ inline UpdateVehicleResponseItem& WithVehicleName(const char* value) { SetVehicleName(value); return *this;} /** *The Amazon Resource Name (ARN) of the updated vehicle.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of the updated vehicle.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the updated vehicle.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the updated vehicle.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the updated vehicle.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the updated vehicle.
*/ inline UpdateVehicleResponseItem& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the updated vehicle.
*/ inline UpdateVehicleResponseItem& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the updated vehicle.
*/ inline UpdateVehicleResponseItem& WithArn(const char* value) { SetArn(value); return *this;} private: Aws::String m_vehicleName; bool m_vehicleNameHasBeenSet = false; Aws::String m_arn; bool m_arnHasBeenSet = false; }; } // namespace Model } // namespace IoTFleetWise } // namespace Aws