Struct aws_sdk_iotwireless::types::builders::LoRaWanGatewayBuilder
source · #[non_exhaustive]pub struct LoRaWanGatewayBuilder { /* private fields */ }Expand description
A builder for LoRaWanGateway.
Implementations§
source§impl LoRaWanGatewayBuilder
impl LoRaWanGatewayBuilder
sourcepub fn gateway_eui(self, input: impl Into<String>) -> Self
pub fn gateway_eui(self, input: impl Into<String>) -> Self
The gateway's EUI value.
sourcepub fn set_gateway_eui(self, input: Option<String>) -> Self
pub fn set_gateway_eui(self, input: Option<String>) -> Self
The gateway's EUI value.
sourcepub fn get_gateway_eui(&self) -> &Option<String>
pub fn get_gateway_eui(&self) -> &Option<String>
The gateway's EUI value.
sourcepub fn set_rf_region(self, input: Option<String>) -> Self
pub fn set_rf_region(self, input: Option<String>) -> Self
The frequency band (RFRegion) value.
sourcepub fn get_rf_region(&self) -> &Option<String>
pub fn get_rf_region(&self) -> &Option<String>
The frequency band (RFRegion) value.
sourcepub fn join_eui_filters(self, input: Vec<String>) -> Self
pub fn join_eui_filters(self, input: Vec<String>) -> Self
Appends an item to join_eui_filters.
To override the contents of this collection use set_join_eui_filters.
A list of JoinEuiRange used by LoRa gateways to filter LoRa frames.
sourcepub fn set_join_eui_filters(self, input: Option<Vec<Vec<String>>>) -> Self
pub fn set_join_eui_filters(self, input: Option<Vec<Vec<String>>>) -> Self
A list of JoinEuiRange used by LoRa gateways to filter LoRa frames.
sourcepub fn get_join_eui_filters(&self) -> &Option<Vec<Vec<String>>>
pub fn get_join_eui_filters(&self) -> &Option<Vec<Vec<String>>>
A list of JoinEuiRange used by LoRa gateways to filter LoRa frames.
sourcepub fn net_id_filters(self, input: impl Into<String>) -> Self
pub fn net_id_filters(self, input: impl Into<String>) -> Self
Appends an item to net_id_filters.
To override the contents of this collection use set_net_id_filters.
A list of NetId values that are used by LoRa gateways to filter the uplink frames.
sourcepub fn set_net_id_filters(self, input: Option<Vec<String>>) -> Self
pub fn set_net_id_filters(self, input: Option<Vec<String>>) -> Self
A list of NetId values that are used by LoRa gateways to filter the uplink frames.
sourcepub fn get_net_id_filters(&self) -> &Option<Vec<String>>
pub fn get_net_id_filters(&self) -> &Option<Vec<String>>
A list of NetId values that are used by LoRa gateways to filter the uplink frames.
sourcepub fn sub_bands(self, input: i32) -> Self
pub fn sub_bands(self, input: i32) -> Self
Appends an item to sub_bands.
To override the contents of this collection use set_sub_bands.
A list of integer indicating which sub bands are supported by LoRa gateway.
sourcepub fn set_sub_bands(self, input: Option<Vec<i32>>) -> Self
pub fn set_sub_bands(self, input: Option<Vec<i32>>) -> Self
A list of integer indicating which sub bands are supported by LoRa gateway.
sourcepub fn get_sub_bands(&self) -> &Option<Vec<i32>>
pub fn get_sub_bands(&self) -> &Option<Vec<i32>>
A list of integer indicating which sub bands are supported by LoRa gateway.
sourcepub fn beaconing(self, input: Beaconing) -> Self
pub fn beaconing(self, input: Beaconing) -> Self
Beaconing object information, which consists of the data rate and frequency parameters.
sourcepub fn set_beaconing(self, input: Option<Beaconing>) -> Self
pub fn set_beaconing(self, input: Option<Beaconing>) -> Self
Beaconing object information, which consists of the data rate and frequency parameters.
sourcepub fn get_beaconing(&self) -> &Option<Beaconing>
pub fn get_beaconing(&self) -> &Option<Beaconing>
Beaconing object information, which consists of the data rate and frequency parameters.
sourcepub fn set_max_eirp(self, input: Option<f32>) -> Self
pub fn set_max_eirp(self, input: Option<f32>) -> Self
The MaxEIRP value.
sourcepub fn get_max_eirp(&self) -> &Option<f32>
pub fn get_max_eirp(&self) -> &Option<f32>
The MaxEIRP value.
sourcepub fn build(self) -> LoRaWanGateway
pub fn build(self) -> LoRaWanGateway
Consumes the builder and constructs a LoRaWanGateway.
Trait Implementations§
source§impl Clone for LoRaWanGatewayBuilder
impl Clone for LoRaWanGatewayBuilder
source§fn clone(&self) -> LoRaWanGatewayBuilder
fn clone(&self) -> LoRaWanGatewayBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for LoRaWanGatewayBuilder
impl Debug for LoRaWanGatewayBuilder
source§impl Default for LoRaWanGatewayBuilder
impl Default for LoRaWanGatewayBuilder
source§fn default() -> LoRaWanGatewayBuilder
fn default() -> LoRaWanGatewayBuilder
source§impl PartialEq for LoRaWanGatewayBuilder
impl PartialEq for LoRaWanGatewayBuilder
source§fn eq(&self, other: &LoRaWanGatewayBuilder) -> bool
fn eq(&self, other: &LoRaWanGatewayBuilder) -> bool
self and other values to be equal, and is used
by ==.