/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include SidewalkEventNotificationConfigurations
object, which is the
* event configuration object for Sidewalk-related event topics.See
* Also:
AWS
* API Reference
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