#[non_exhaustive]pub struct CreateMulticastGroupInput {
pub name: Option<String>,
pub description: Option<String>,
pub client_request_token: Option<String>,
pub lo_ra_wan: Option<LoRaWanMulticast>,
pub tags: Option<Vec<Tag>>,
}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 multicast group.
description: Option<String>The description of the multicast group.
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<LoRaWanMulticast>The LoRaWAN information that is to be used with the multicast group.
The tag to attach to the specified resource. Tags are metadata that you can use to manage a resource.
Implementations§
source§impl CreateMulticastGroupInput
impl CreateMulticastGroupInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the multicast group.
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<&LoRaWanMulticast>
pub fn lo_ra_wan(&self) -> Option<&LoRaWanMulticast>
The LoRaWAN information that is to be used with the multicast group.
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().
source§impl CreateMulticastGroupInput
impl CreateMulticastGroupInput
sourcepub fn builder() -> CreateMulticastGroupInputBuilder
pub fn builder() -> CreateMulticastGroupInputBuilder
Creates a new builder-style object to manufacture CreateMulticastGroupInput.
Trait Implementations§
source§impl Clone for CreateMulticastGroupInput
impl Clone for CreateMulticastGroupInput
source§fn clone(&self) -> CreateMulticastGroupInput
fn clone(&self) -> CreateMulticastGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateMulticastGroupInput
impl Debug for CreateMulticastGroupInput
source§impl PartialEq for CreateMulticastGroupInput
impl PartialEq for CreateMulticastGroupInput
source§fn eq(&self, other: &CreateMulticastGroupInput) -> bool
fn eq(&self, other: &CreateMulticastGroupInput) -> bool
self and other values to be equal, and is used
by ==.