#[non_exhaustive]pub struct DeleteQueuedMessagesInput {
pub id: Option<String>,
pub message_id: Option<String>,
pub wireless_device_type: Option<WirelessDeviceType>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: Option<String>The ID of a given wireless device for which downlink messages will be deleted.
message_id: Option<String>If message ID is "*", it cleares the entire downlink queue for a given device, specified by the wireless device ID. Otherwise, the downlink message with the specified message ID will be deleted.
wireless_device_type: Option<WirelessDeviceType>The wireless device type, which can be either Sidewalk or LoRaWAN.
Implementations§
source§impl DeleteQueuedMessagesInput
impl DeleteQueuedMessagesInput
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The ID of a given wireless device for which downlink messages will be deleted.
sourcepub fn message_id(&self) -> Option<&str>
pub fn message_id(&self) -> Option<&str>
If message ID is "*", it cleares the entire downlink queue for a given device, specified by the wireless device ID. Otherwise, the downlink message with the specified message ID will be deleted.
sourcepub fn wireless_device_type(&self) -> Option<&WirelessDeviceType>
pub fn wireless_device_type(&self) -> Option<&WirelessDeviceType>
The wireless device type, which can be either Sidewalk or LoRaWAN.
source§impl DeleteQueuedMessagesInput
impl DeleteQueuedMessagesInput
sourcepub fn builder() -> DeleteQueuedMessagesInputBuilder
pub fn builder() -> DeleteQueuedMessagesInputBuilder
Creates a new builder-style object to manufacture DeleteQueuedMessagesInput.
Trait Implementations§
source§impl Clone for DeleteQueuedMessagesInput
impl Clone for DeleteQueuedMessagesInput
source§fn clone(&self) -> DeleteQueuedMessagesInput
fn clone(&self) -> DeleteQueuedMessagesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteQueuedMessagesInput
impl Debug for DeleteQueuedMessagesInput
source§impl PartialEq for DeleteQueuedMessagesInput
impl PartialEq for DeleteQueuedMessagesInput
source§fn eq(&self, other: &DeleteQueuedMessagesInput) -> bool
fn eq(&self, other: &DeleteQueuedMessagesInput) -> bool
self and other values to be equal, and is used
by ==.