/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Object for LoRaWAN join resource type event configuration.See
* Also:
AWS
* API Reference
Denotes whether the Dev EUI join event topic is enabled or disabled.
*/ inline const EventNotificationTopicStatus& GetDevEuiEventTopic() const{ return m_devEuiEventTopic; } /** *Denotes whether the Dev EUI join event topic is enabled or disabled.
*/ inline bool DevEuiEventTopicHasBeenSet() const { return m_devEuiEventTopicHasBeenSet; } /** *Denotes whether the Dev EUI join event topic is enabled or disabled.
*/ inline void SetDevEuiEventTopic(const EventNotificationTopicStatus& value) { m_devEuiEventTopicHasBeenSet = true; m_devEuiEventTopic = value; } /** *Denotes whether the Dev EUI join event topic is enabled or disabled.
*/ inline void SetDevEuiEventTopic(EventNotificationTopicStatus&& value) { m_devEuiEventTopicHasBeenSet = true; m_devEuiEventTopic = std::move(value); } /** *Denotes whether the Dev EUI join event topic is enabled or disabled.
*/ inline LoRaWANJoinEventNotificationConfigurations& WithDevEuiEventTopic(const EventNotificationTopicStatus& value) { SetDevEuiEventTopic(value); return *this;} /** *Denotes whether the Dev EUI join event topic is enabled or disabled.
*/ inline LoRaWANJoinEventNotificationConfigurations& WithDevEuiEventTopic(EventNotificationTopicStatus&& value) { SetDevEuiEventTopic(std::move(value)); return *this;} private: EventNotificationTopicStatus m_devEuiEventTopic; bool m_devEuiEventTopicHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws