#[non_exhaustive]pub struct CreateServiceProfileInput {
pub name: Option<String>,
pub lo_ra_wan: Option<LoRaWanServiceProfile>,
pub tags: Option<Vec<Tag>>,
pub client_request_token: Option<String>,
}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<LoRaWanServiceProfile>The service profile information to use to create the service profile.
The tags to attach to the new service 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.
Implementations§
source§impl CreateServiceProfileInput
impl CreateServiceProfileInput
sourcepub fn lo_ra_wan(&self) -> Option<&LoRaWanServiceProfile>
pub fn lo_ra_wan(&self) -> Option<&LoRaWanServiceProfile>
The service profile information to use to create the service profile.
The tags to attach to the new service profile. 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 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.
source§impl CreateServiceProfileInput
impl CreateServiceProfileInput
sourcepub fn builder() -> CreateServiceProfileInputBuilder
pub fn builder() -> CreateServiceProfileInputBuilder
Creates a new builder-style object to manufacture CreateServiceProfileInput.
Trait Implementations§
source§impl Clone for CreateServiceProfileInput
impl Clone for CreateServiceProfileInput
source§fn clone(&self) -> CreateServiceProfileInput
fn clone(&self) -> CreateServiceProfileInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateServiceProfileInput
impl Debug for CreateServiceProfileInput
source§impl PartialEq for CreateServiceProfileInput
impl PartialEq for CreateServiceProfileInput
source§fn eq(&self, other: &CreateServiceProfileInput) -> bool
fn eq(&self, other: &CreateServiceProfileInput) -> bool
self and other values to be equal, and is used
by ==.