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

The structure that contains the information required for notifications. If * the structure is null, the configuration will be deleted from the stream.

*/ inline const NotificationConfiguration& GetNotificationConfiguration() const{ return m_notificationConfiguration; } /** *

The structure that contains the information required for notifications. If * the structure is null, the configuration will be deleted from the stream.

*/ inline void SetNotificationConfiguration(const NotificationConfiguration& value) { m_notificationConfiguration = value; } /** *

The structure that contains the information required for notifications. If * the structure is null, the configuration will be deleted from the stream.

*/ inline void SetNotificationConfiguration(NotificationConfiguration&& value) { m_notificationConfiguration = std::move(value); } /** *

The structure that contains the information required for notifications. If * the structure is null, the configuration will be deleted from the stream.

*/ inline DescribeNotificationConfigurationResult& WithNotificationConfiguration(const NotificationConfiguration& value) { SetNotificationConfiguration(value); return *this;} /** *

The structure that contains the information required for notifications. If * the structure is null, the configuration will be deleted from the stream.

*/ inline DescribeNotificationConfigurationResult& WithNotificationConfiguration(NotificationConfiguration&& value) { SetNotificationConfiguration(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeNotificationConfigurationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeNotificationConfigurationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeNotificationConfigurationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: NotificationConfiguration m_notificationConfiguration; Aws::String m_requestId; }; } // namespace Model } // namespace KinesisVideo } // namespace Aws