/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace RoboMaker { namespace Model { /** *

The logging configuration.

See Also:

AWS * API Reference

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

A boolean indicating whether to record all ROS topics.

*/ inline bool GetRecordAllRosTopics() const{ return m_recordAllRosTopics; } /** *

A boolean indicating whether to record all ROS topics.

*/ inline bool RecordAllRosTopicsHasBeenSet() const { return m_recordAllRosTopicsHasBeenSet; } /** *

A boolean indicating whether to record all ROS topics.

*/ inline void SetRecordAllRosTopics(bool value) { m_recordAllRosTopicsHasBeenSet = true; m_recordAllRosTopics = value; } /** *

A boolean indicating whether to record all ROS topics.

*/ inline LoggingConfig& WithRecordAllRosTopics(bool value) { SetRecordAllRosTopics(value); return *this;} private: bool m_recordAllRosTopics; bool m_recordAllRosTopicsHasBeenSet; }; } // namespace Model } // namespace RoboMaker } // namespace Aws