Struct aws_sdk_iotwireless::operation::start_wireless_device_import_task::StartWirelessDeviceImportTaskInput
source · #[non_exhaustive]pub struct StartWirelessDeviceImportTaskInput {
pub destination_name: Option<String>,
pub client_request_token: Option<String>,
pub tags: Option<Vec<Tag>>,
pub sidewalk: Option<SidewalkStartImportInfo>,
}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.destination_name: Option<String>The name of the Sidewalk destination that describes the IoT rule to route messages from the devices in the import task that are onboarded to AWS IoT Wireless.
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.
The tag to attach to the specified resource. Tags are metadata that you can use to manage a resource.
sidewalk: Option<SidewalkStartImportInfo>The Sidewalk-related parameters for importing wireless devices that need to be provisioned in bulk.
Implementations§
source§impl StartWirelessDeviceImportTaskInput
impl StartWirelessDeviceImportTaskInput
sourcepub fn destination_name(&self) -> Option<&str>
pub fn destination_name(&self) -> Option<&str>
The name of the Sidewalk destination that describes the IoT rule to route messages from the devices in the import task that are onboarded to AWS IoT Wireless.
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.
The tag to attach to the specified resource. 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 sidewalk(&self) -> Option<&SidewalkStartImportInfo>
pub fn sidewalk(&self) -> Option<&SidewalkStartImportInfo>
The Sidewalk-related parameters for importing wireless devices that need to be provisioned in bulk.
source§impl StartWirelessDeviceImportTaskInput
impl StartWirelessDeviceImportTaskInput
sourcepub fn builder() -> StartWirelessDeviceImportTaskInputBuilder
pub fn builder() -> StartWirelessDeviceImportTaskInputBuilder
Creates a new builder-style object to manufacture StartWirelessDeviceImportTaskInput.
Trait Implementations§
source§impl Clone for StartWirelessDeviceImportTaskInput
impl Clone for StartWirelessDeviceImportTaskInput
source§fn clone(&self) -> StartWirelessDeviceImportTaskInput
fn clone(&self) -> StartWirelessDeviceImportTaskInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for StartWirelessDeviceImportTaskInput
impl PartialEq for StartWirelessDeviceImportTaskInput
source§fn eq(&self, other: &StartWirelessDeviceImportTaskInput) -> bool
fn eq(&self, other: &StartWirelessDeviceImportTaskInput) -> bool
self and other values to be equal, and is used
by ==.