#[non_exhaustive]pub struct CreateWirelessDeviceInput {
pub type: Option<WirelessDeviceType>,
pub name: Option<String>,
pub description: Option<String>,
pub destination_name: Option<String>,
pub client_request_token: Option<String>,
pub lo_ra_wan: Option<LoRaWanDevice>,
pub tags: Option<Vec<Tag>>,
pub positioning: Option<PositioningConfigStatus>,
pub sidewalk: Option<SidewalkCreateWirelessDevice>,
}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.type: Option<WirelessDeviceType>The wireless device type.
name: Option<String>The name of the new resource.
description: Option<String>The description of the new resource.
destination_name: Option<String>The name of the destination to assign to the new wireless device.
client_request_token: Option<String>Each resource must have a unique client request token. If you try to create a new resource with the same token as a resource that already exists, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
lo_ra_wan: Option<LoRaWanDevice>The device configuration information to use to create the wireless device.
The tags to attach to the new wireless device. Tags are metadata that you can use to manage a resource.
positioning: Option<PositioningConfigStatus>FPort values for the GNSS, stream, and ClockSync functions of the positioning information.
sidewalk: Option<SidewalkCreateWirelessDevice>The device configuration information to use to create the Sidewalk device.
Implementations§
source§impl CreateWirelessDeviceInput
impl CreateWirelessDeviceInput
sourcepub fn type(&self) -> Option<&WirelessDeviceType>
pub fn type(&self) -> Option<&WirelessDeviceType>
The wireless device type.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the new resource.
sourcepub fn destination_name(&self) -> Option<&str>
pub fn destination_name(&self) -> Option<&str>
The name of the destination to assign to the new wireless device.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
Each resource must have a unique client request token. If you try to create a new resource with the same token as a resource that already exists, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
sourcepub fn lo_ra_wan(&self) -> Option<&LoRaWanDevice>
pub fn lo_ra_wan(&self) -> Option<&LoRaWanDevice>
The device configuration information to use to create the wireless device.
The tags to attach to the new wireless device. Tags are metadata that you can use to manage a resource.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
sourcepub fn positioning(&self) -> Option<&PositioningConfigStatus>
pub fn positioning(&self) -> Option<&PositioningConfigStatus>
FPort values for the GNSS, stream, and ClockSync functions of the positioning information.
sourcepub fn sidewalk(&self) -> Option<&SidewalkCreateWirelessDevice>
pub fn sidewalk(&self) -> Option<&SidewalkCreateWirelessDevice>
The device configuration information to use to create the Sidewalk device.
source§impl CreateWirelessDeviceInput
impl CreateWirelessDeviceInput
sourcepub fn builder() -> CreateWirelessDeviceInputBuilder
pub fn builder() -> CreateWirelessDeviceInputBuilder
Creates a new builder-style object to manufacture CreateWirelessDeviceInput.
Trait Implementations§
source§impl Clone for CreateWirelessDeviceInput
impl Clone for CreateWirelessDeviceInput
source§fn clone(&self) -> CreateWirelessDeviceInput
fn clone(&self) -> CreateWirelessDeviceInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateWirelessDeviceInput
impl Debug for CreateWirelessDeviceInput
source§impl PartialEq for CreateWirelessDeviceInput
impl PartialEq for CreateWirelessDeviceInput
source§fn eq(&self, other: &CreateWirelessDeviceInput) -> bool
fn eq(&self, other: &CreateWirelessDeviceInput) -> bool
self and other values to be equal, and is used
by ==.