/** * 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 IoTAnalytics { namespace Model { class AWS_IOTANALYTICS_API DescribeLoggingOptionsResult { public: DescribeLoggingOptionsResult(); DescribeLoggingOptionsResult(const Aws::AmazonWebServiceResult& result); DescribeLoggingOptionsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The current settings of the AWS IoT Analytics logging options.

*/ inline const LoggingOptions& GetLoggingOptions() const{ return m_loggingOptions; } /** *

The current settings of the AWS IoT Analytics logging options.

*/ inline void SetLoggingOptions(const LoggingOptions& value) { m_loggingOptions = value; } /** *

The current settings of the AWS IoT Analytics logging options.

*/ inline void SetLoggingOptions(LoggingOptions&& value) { m_loggingOptions = std::move(value); } /** *

The current settings of the AWS IoT Analytics logging options.

*/ inline DescribeLoggingOptionsResult& WithLoggingOptions(const LoggingOptions& value) { SetLoggingOptions(value); return *this;} /** *

The current settings of the AWS IoT Analytics logging options.

*/ inline DescribeLoggingOptionsResult& WithLoggingOptions(LoggingOptions&& value) { SetLoggingOptions(std::move(value)); return *this;} private: LoggingOptions m_loggingOptions; }; } // namespace Model } // namespace IoTAnalytics } // namespace Aws