#[non_exhaustive]pub struct CreateDeviceProfileInput {
pub name: Option<String>,
pub lo_ra_wan: Option<LoRaWanDeviceProfile>,
pub tags: Option<Vec<Tag>>,
pub client_request_token: Option<String>,
pub sidewalk: Option<SidewalkCreateDeviceProfile>,
}
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.name: Option<String>
The name of the new resource.
lo_ra_wan: Option<LoRaWanDeviceProfile>
The device profile information to use to create the device profile.
The tags to attach to the new device profile. Tags are metadata that you can use to manage a resource.
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.
sidewalk: Option<SidewalkCreateDeviceProfile>
The Sidewalk-related information for creating the Sidewalk device profile.
Implementations§
source§impl CreateDeviceProfileInput
impl CreateDeviceProfileInput
sourcepub fn lo_ra_wan(&self) -> Option<&LoRaWanDeviceProfile>
pub fn lo_ra_wan(&self) -> Option<&LoRaWanDeviceProfile>
The device profile information to use to create the device profile.
The tags to attach to the new device profile. Tags are metadata that you can use to manage a resource.
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 sidewalk(&self) -> Option<&SidewalkCreateDeviceProfile>
pub fn sidewalk(&self) -> Option<&SidewalkCreateDeviceProfile>
The Sidewalk-related information for creating the Sidewalk device profile.
source§impl CreateDeviceProfileInput
impl CreateDeviceProfileInput
sourcepub fn builder() -> CreateDeviceProfileInputBuilder
pub fn builder() -> CreateDeviceProfileInputBuilder
Creates a new builder-style object to manufacture CreateDeviceProfileInput
.
Trait Implementations§
source§impl Clone for CreateDeviceProfileInput
impl Clone for CreateDeviceProfileInput
source§fn clone(&self) -> CreateDeviceProfileInput
fn clone(&self) -> CreateDeviceProfileInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateDeviceProfileInput
impl Debug for CreateDeviceProfileInput
source§impl PartialEq for CreateDeviceProfileInput
impl PartialEq for CreateDeviceProfileInput
source§fn eq(&self, other: &CreateDeviceProfileInput) -> bool
fn eq(&self, other: &CreateDeviceProfileInput) -> bool
self
and other
values to be equal, and is used
by ==
.