/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoTWireless { namespace Model { /** *

Object for LoRaWAN join resource type event configuration.

See * Also:

AWS * API Reference

*/ class LoRaWANJoinEventNotificationConfigurations { public: AWS_IOTWIRELESS_API LoRaWANJoinEventNotificationConfigurations(); AWS_IOTWIRELESS_API LoRaWANJoinEventNotificationConfigurations(Aws::Utils::Json::JsonView jsonValue); AWS_IOTWIRELESS_API LoRaWANJoinEventNotificationConfigurations& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_IOTWIRELESS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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