pub struct CreateOTAUpdateResponse {
pub aws_iot_job_arn: Option<String>,
pub aws_iot_job_id: Option<String>,
pub ota_update_arn: Option<String>,
pub ota_update_id: Option<String>,
pub ota_update_status: Option<String>,
}
Fields§
§aws_iot_job_arn: Option<String>
The AWS IoT job ARN associated with the OTA update.
aws_iot_job_id: Option<String>
The AWS IoT job ID associated with the OTA update.
ota_update_arn: Option<String>
The OTA update ARN.
ota_update_id: Option<String>
The OTA update ID.
ota_update_status: Option<String>
The OTA update status.
Trait Implementations§
Source§impl Clone for CreateOTAUpdateResponse
impl Clone for CreateOTAUpdateResponse
Source§fn clone(&self) -> CreateOTAUpdateResponse
fn clone(&self) -> CreateOTAUpdateResponse
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 CreateOTAUpdateResponse
impl Debug for CreateOTAUpdateResponse
Source§impl Default for CreateOTAUpdateResponse
impl Default for CreateOTAUpdateResponse
Source§fn default() -> CreateOTAUpdateResponse
fn default() -> CreateOTAUpdateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateOTAUpdateResponse
impl<'de> Deserialize<'de> for CreateOTAUpdateResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CreateOTAUpdateResponse
impl PartialEq for CreateOTAUpdateResponse
impl StructuralPartialEq for CreateOTAUpdateResponse
Auto Trait Implementations§
impl Freeze for CreateOTAUpdateResponse
impl RefUnwindSafe for CreateOTAUpdateResponse
impl Send for CreateOTAUpdateResponse
impl Sync for CreateOTAUpdateResponse
impl Unpin for CreateOTAUpdateResponse
impl UnwindSafe for CreateOTAUpdateResponse
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