/** * 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 { /** *

SidewalkEventNotificationConfigurations object, which is the * event configuration object for Sidewalk-related event topics.

See * Also:

AWS * API Reference

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

Denotes whether the Amazon ID event topic is enabled or disabled.

*/ inline const EventNotificationTopicStatus& GetAmazonIdEventTopic() const{ return m_amazonIdEventTopic; } /** *

Denotes whether the Amazon ID event topic is enabled or disabled.

*/ inline bool AmazonIdEventTopicHasBeenSet() const { return m_amazonIdEventTopicHasBeenSet; } /** *

Denotes whether the Amazon ID event topic is enabled or disabled.

*/ inline void SetAmazonIdEventTopic(const EventNotificationTopicStatus& value) { m_amazonIdEventTopicHasBeenSet = true; m_amazonIdEventTopic = value; } /** *

Denotes whether the Amazon ID event topic is enabled or disabled.

*/ inline void SetAmazonIdEventTopic(EventNotificationTopicStatus&& value) { m_amazonIdEventTopicHasBeenSet = true; m_amazonIdEventTopic = std::move(value); } /** *

Denotes whether the Amazon ID event topic is enabled or disabled.

*/ inline SidewalkEventNotificationConfigurations& WithAmazonIdEventTopic(const EventNotificationTopicStatus& value) { SetAmazonIdEventTopic(value); return *this;} /** *

Denotes whether the Amazon ID event topic is enabled or disabled.

*/ inline SidewalkEventNotificationConfigurations& WithAmazonIdEventTopic(EventNotificationTopicStatus&& value) { SetAmazonIdEventTopic(std::move(value)); return *this;} private: EventNotificationTopicStatus m_amazonIdEventTopic; bool m_amazonIdEventTopicHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws