/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include LoRaWANGateway object.See Also:
AWS
* API Reference
The gateway's EUI value.
*/ inline const Aws::String& GetGatewayEui() const{ return m_gatewayEui; } /** *The gateway's EUI value.
*/ inline bool GatewayEuiHasBeenSet() const { return m_gatewayEuiHasBeenSet; } /** *The gateway's EUI value.
*/ inline void SetGatewayEui(const Aws::String& value) { m_gatewayEuiHasBeenSet = true; m_gatewayEui = value; } /** *The gateway's EUI value.
*/ inline void SetGatewayEui(Aws::String&& value) { m_gatewayEuiHasBeenSet = true; m_gatewayEui = std::move(value); } /** *The gateway's EUI value.
*/ inline void SetGatewayEui(const char* value) { m_gatewayEuiHasBeenSet = true; m_gatewayEui.assign(value); } /** *The gateway's EUI value.
*/ inline LoRaWANGateway& WithGatewayEui(const Aws::String& value) { SetGatewayEui(value); return *this;} /** *The gateway's EUI value.
*/ inline LoRaWANGateway& WithGatewayEui(Aws::String&& value) { SetGatewayEui(std::move(value)); return *this;} /** *The gateway's EUI value.
*/ inline LoRaWANGateway& WithGatewayEui(const char* value) { SetGatewayEui(value); return *this;} /** *The frequency band (RFRegion) value.
*/ inline const Aws::String& GetRfRegion() const{ return m_rfRegion; } /** *The frequency band (RFRegion) value.
*/ inline bool RfRegionHasBeenSet() const { return m_rfRegionHasBeenSet; } /** *The frequency band (RFRegion) value.
*/ inline void SetRfRegion(const Aws::String& value) { m_rfRegionHasBeenSet = true; m_rfRegion = value; } /** *The frequency band (RFRegion) value.
*/ inline void SetRfRegion(Aws::String&& value) { m_rfRegionHasBeenSet = true; m_rfRegion = std::move(value); } /** *The frequency band (RFRegion) value.
*/ inline void SetRfRegion(const char* value) { m_rfRegionHasBeenSet = true; m_rfRegion.assign(value); } /** *The frequency band (RFRegion) value.
*/ inline LoRaWANGateway& WithRfRegion(const Aws::String& value) { SetRfRegion(value); return *this;} /** *The frequency band (RFRegion) value.
*/ inline LoRaWANGateway& WithRfRegion(Aws::String&& value) { SetRfRegion(std::move(value)); return *this;} /** *The frequency band (RFRegion) value.
*/ inline LoRaWANGateway& WithRfRegion(const char* value) { SetRfRegion(value); return *this;} inline const Aws::VectorBeaconing object information, which consists of the data rate and frequency * parameters.
*/ inline const Beaconing& GetBeaconing() const{ return m_beaconing; } /** *Beaconing object information, which consists of the data rate and frequency * parameters.
*/ inline bool BeaconingHasBeenSet() const { return m_beaconingHasBeenSet; } /** *Beaconing object information, which consists of the data rate and frequency * parameters.
*/ inline void SetBeaconing(const Beaconing& value) { m_beaconingHasBeenSet = true; m_beaconing = value; } /** *Beaconing object information, which consists of the data rate and frequency * parameters.
*/ inline void SetBeaconing(Beaconing&& value) { m_beaconingHasBeenSet = true; m_beaconing = std::move(value); } /** *Beaconing object information, which consists of the data rate and frequency * parameters.
*/ inline LoRaWANGateway& WithBeaconing(const Beaconing& value) { SetBeaconing(value); return *this;} /** *Beaconing object information, which consists of the data rate and frequency * parameters.
*/ inline LoRaWANGateway& WithBeaconing(Beaconing&& value) { SetBeaconing(std::move(value)); return *this;} /** *The MaxEIRP value.
*/ inline double GetMaxEirp() const{ return m_maxEirp; } /** *The MaxEIRP value.
*/ inline bool MaxEirpHasBeenSet() const { return m_maxEirpHasBeenSet; } /** *The MaxEIRP value.
*/ inline void SetMaxEirp(double value) { m_maxEirpHasBeenSet = true; m_maxEirp = value; } /** *The MaxEIRP value.
*/ inline LoRaWANGateway& WithMaxEirp(double value) { SetMaxEirp(value); return *this;} private: Aws::String m_gatewayEui; bool m_gatewayEuiHasBeenSet = false; Aws::String m_rfRegion; bool m_rfRegionHasBeenSet = false; Aws::Vector