/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Chime { namespace Model { class AWS_CHIME_API GetEventsConfigurationResult { public: GetEventsConfigurationResult(); GetEventsConfigurationResult(const Aws::AmazonWebServiceResult& result); GetEventsConfigurationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The events configuration details.

*/ inline const EventsConfiguration& GetEventsConfiguration() const{ return m_eventsConfiguration; } /** *

The events configuration details.

*/ inline void SetEventsConfiguration(const EventsConfiguration& value) { m_eventsConfiguration = value; } /** *

The events configuration details.

*/ inline void SetEventsConfiguration(EventsConfiguration&& value) { m_eventsConfiguration = std::move(value); } /** *

The events configuration details.

*/ inline GetEventsConfigurationResult& WithEventsConfiguration(const EventsConfiguration& value) { SetEventsConfiguration(value); return *this;} /** *

The events configuration details.

*/ inline GetEventsConfigurationResult& WithEventsConfiguration(EventsConfiguration&& value) { SetEventsConfiguration(std::move(value)); return *this;} private: EventsConfiguration m_eventsConfiguration; }; } // namespace Model } // namespace Chime } // namespace Aws