Struct aws_sdk_iot::input::delete_ota_update_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for DeleteOtaUpdateInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn ota_update_id(self, input: impl Into<String>) -> Self
pub fn ota_update_id(self, input: impl Into<String>) -> Self
The ID of the OTA update to delete.
sourcepub fn set_ota_update_id(self, input: Option<String>) -> Self
pub fn set_ota_update_id(self, input: Option<String>) -> Self
The ID of the OTA update to delete.
sourcepub fn delete_stream(self, input: bool) -> Self
pub fn delete_stream(self, input: bool) -> Self
When true, the stream created by the OTAUpdate process is deleted when the OTA update is deleted. Ignored if the stream specified in the OTAUpdate is supplied by the user.
sourcepub fn set_delete_stream(self, input: Option<bool>) -> Self
pub fn set_delete_stream(self, input: Option<bool>) -> Self
When true, the stream created by the OTAUpdate process is deleted when the OTA update is deleted. Ignored if the stream specified in the OTAUpdate is supplied by the user.
sourcepub fn force_delete_aws_job(self, input: bool) -> Self
pub fn force_delete_aws_job(self, input: bool) -> Self
When true, deletes the IoT job created by the OTAUpdate process even if it is "IN_PROGRESS". Otherwise, if the job is not in a terminal state ("COMPLETED" or "CANCELED") an exception will occur. The default is false.
sourcepub fn set_force_delete_aws_job(self, input: Option<bool>) -> Self
pub fn set_force_delete_aws_job(self, input: Option<bool>) -> Self
When true, deletes the IoT job created by the OTAUpdate process even if it is "IN_PROGRESS". Otherwise, if the job is not in a terminal state ("COMPLETED" or "CANCELED") an exception will occur. The default is false.
sourcepub fn build(self) -> Result<DeleteOtaUpdateInput, BuildError>
pub fn build(self) -> Result<DeleteOtaUpdateInput, BuildError>
Consumes the builder and constructs a DeleteOtaUpdateInput
.