pub struct DeleteOTAUpdateRequest {
pub delete_stream: Option<bool>,
pub force_delete_aws_job: Option<bool>,
pub ota_update_id: String,
}Fields§
§delete_stream: Option<bool>Specifies if the stream associated with an OTA update should be deleted when the OTA update is deleted.
force_delete_aws_job: Option<bool>Specifies if the AWS Job associated with the OTA update should be deleted when the OTA update is deleted.
ota_update_id: StringThe ID of the OTA update to delete.
Trait Implementations§
Source§impl Clone for DeleteOTAUpdateRequest
impl Clone for DeleteOTAUpdateRequest
Source§fn clone(&self) -> DeleteOTAUpdateRequest
fn clone(&self) -> DeleteOTAUpdateRequest
Returns a duplicate 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 DeleteOTAUpdateRequest
impl Debug for DeleteOTAUpdateRequest
Source§impl Default for DeleteOTAUpdateRequest
impl Default for DeleteOTAUpdateRequest
Source§fn default() -> DeleteOTAUpdateRequest
fn default() -> DeleteOTAUpdateRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteOTAUpdateRequest
impl PartialEq for DeleteOTAUpdateRequest
Source§impl Serialize for DeleteOTAUpdateRequest
impl Serialize for DeleteOTAUpdateRequest
impl StructuralPartialEq for DeleteOTAUpdateRequest
Auto Trait Implementations§
impl Freeze for DeleteOTAUpdateRequest
impl RefUnwindSafe for DeleteOTAUpdateRequest
impl Send for DeleteOTAUpdateRequest
impl Sync for DeleteOTAUpdateRequest
impl Unpin for DeleteOTAUpdateRequest
impl UnwindSafe for DeleteOTAUpdateRequest
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